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">
<CLASSES>
<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>
<JAVADOC />
<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>
<excluded>
<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.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.5.18-SNAPSHOT8.jar",
"${HOME}/.rife2/dist/rife2-1.5.18.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/test/*.jar"

Binary file not shown.

View file

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

View file

@ -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) {