mirror of
https://github.com/ethauvin/bld-archive.git
synced 2025-04-25 13:27:11 -07:00
Updated to released RIFE2 1.5.18
This commit is contained in:
parent
757f7f5abe
commit
18fb00ef75
6 changed files with 27 additions and 36 deletions
|
@ -15,16 +15,16 @@ public class ArchiveBuild extends Project {
|
|||
public ArchiveBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "Archive";
|
||||
version = version(0,1,0,"SNAPSHOT");
|
||||
version = version(0,2,0);
|
||||
archiveBaseName = "bld-archive";
|
||||
|
||||
javaRelease = 17;
|
||||
downloadSources = true;
|
||||
autoDownloadPurge = true;
|
||||
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_SNAPSHOTS, RIFE2_RELEASES);
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,18,"SNAPSHOT")))
|
||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,5,18)))
|
||||
.include(dependency("org.apache.commons", "commons-compress", version(1,23,0)));
|
||||
scope(test)
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2)))
|
||||
|
@ -38,24 +38,24 @@ public class ArchiveBuild extends Project {
|
|||
publishOperation()
|
||||
.repository(version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases"))
|
||||
.info()
|
||||
.groupId("com.uwyn.rife2")
|
||||
.artifactId("bld-archive")
|
||||
.description("bld extension for creating archives")
|
||||
.url("https://github.com/rife2/bld-archive")
|
||||
.developer(new PublishDeveloper()
|
||||
.id("gbevin")
|
||||
.name("Geert Bevin")
|
||||
.email("gbevin@uwyn.com")
|
||||
.url("https://github.com/gbevin"))
|
||||
.license(new PublishLicense()
|
||||
.name("The Apache License, Version 2.0")
|
||||
.url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
|
||||
.scm(new PublishScm()
|
||||
.connection("scm:git:https://github.com/rife2/bld-archive.git")
|
||||
.developerConnection("scm:git:git@github.com:rife2/bld-archive.git")
|
||||
.url("https://github.com/rife2/bld-archive"))
|
||||
.signKey(property("sign.key"))
|
||||
.signPassphrase(property("sign.passphrase"));
|
||||
.groupId("com.uwyn.rife2")
|
||||
.artifactId("bld-archive")
|
||||
.description("bld extension for creating archives")
|
||||
.url("https://github.com/rife2/bld-archive")
|
||||
.developer(new PublishDeveloper()
|
||||
.id("gbevin")
|
||||
.name("Geert Bevin")
|
||||
.email("gbevin@uwyn.com")
|
||||
.url("https://github.com/gbevin"))
|
||||
.license(new PublishLicense()
|
||||
.name("The Apache License, Version 2.0")
|
||||
.url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
|
||||
.scm(new PublishScm()
|
||||
.connection("scm:git:https://github.com/rife2/bld-archive.git")
|
||||
.developerConnection("scm:git:git@github.com:rife2/bld-archive.git")
|
||||
.url("https://github.com/rife2/bld-archive"))
|
||||
.signKey(property("sign.key"))
|
||||
.signPassphrase(property("sign.passphrase"));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue