Updated to released RIFE2 1.5.18

This commit is contained in:
Geert Bevin 2023-04-08 09:48:26 -04:00
parent 757f7f5abe
commit 18fb00ef75
6 changed files with 27 additions and 36 deletions

View file

@ -2,11 +2,11 @@
<library name="bld"> <library name="bld">
<CLASSES> <CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-SNAPSHOT8.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES> <SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-SNAPSHOT8-sources.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-sources.jar!/" />
</SOURCES> </SOURCES>
<excluded> <excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" /> <root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -1,9 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Run Main" type="Application" factoryName="Application" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="rife.bld.extension.ArchiveMain" />
<module name="app" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>

View file

@ -7,7 +7,7 @@
], ],
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [ "java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.5.18-SNAPSHOT8.jar", "${HOME}/.rife2/dist/rife2-1.5.18.jar",
"lib/compile/*.jar", "lib/compile/*.jar",
"lib/runtime/*.jar", "lib/runtime/*.jar",
"lib/test/*.jar" "lib/test/*.jar"

Binary file not shown.

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.extensions= bld.extensions=
bld.repositories=MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
rife2.downloadLocation=https://uwyn.com rife2.downloadLocation=
rife2.version=1.5.18-SNAPSHOT8 rife2.version=1.5.18

View file

@ -15,16 +15,16 @@ public class ArchiveBuild extends Project {
public ArchiveBuild() { public ArchiveBuild() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "Archive"; name = "Archive";
version = version(0,1,0,"SNAPSHOT"); version = version(0,2,0);
archiveBaseName = "bld-archive"; archiveBaseName = "bld-archive";
javaRelease = 17; javaRelease = 17;
downloadSources = true; downloadSources = true;
autoDownloadPurge = true; autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_SNAPSHOTS, RIFE2_RELEASES); repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(compile) 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))); .include(dependency("org.apache.commons", "commons-compress", version(1,23,0)));
scope(test) scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2)))
@ -38,24 +38,24 @@ public class ArchiveBuild extends Project {
publishOperation() publishOperation()
.repository(version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases")) .repository(version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases"))
.info() .info()
.groupId("com.uwyn.rife2") .groupId("com.uwyn.rife2")
.artifactId("bld-archive") .artifactId("bld-archive")
.description("bld extension for creating archives") .description("bld extension for creating archives")
.url("https://github.com/rife2/bld-archive") .url("https://github.com/rife2/bld-archive")
.developer(new PublishDeveloper() .developer(new PublishDeveloper()
.id("gbevin") .id("gbevin")
.name("Geert Bevin") .name("Geert Bevin")
.email("gbevin@uwyn.com") .email("gbevin@uwyn.com")
.url("https://github.com/gbevin")) .url("https://github.com/gbevin"))
.license(new PublishLicense() .license(new PublishLicense()
.name("The Apache License, Version 2.0") .name("The Apache License, Version 2.0")
.url("https://www.apache.org/licenses/LICENSE-2.0.txt")) .url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
.scm(new PublishScm() .scm(new PublishScm()
.connection("scm:git:https://github.com/rife2/bld-archive.git") .connection("scm:git:https://github.com/rife2/bld-archive.git")
.developerConnection("scm:git:git@github.com:rife2/bld-archive.git") .developerConnection("scm:git:git@github.com:rife2/bld-archive.git")
.url("https://github.com/rife2/bld-archive")) .url("https://github.com/rife2/bld-archive"))
.signKey(property("sign.key")) .signKey(property("sign.key"))
.signPassphrase(property("sign.passphrase")); .signPassphrase(property("sign.passphrase"));
} }
public static void main(String[] args) { public static void main(String[] args) {