mirror of
https://github.com/ethauvin/bld-archive.git
synced 2025-04-24 21:17:10 -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
4
.idea/libraries/bld.xml
generated
4
.idea/libraries/bld.xml
generated
|
@ -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!/" />
|
||||||
|
|
9
.idea/runConfigurations/Run Main.xml
generated
9
.idea/runConfigurations/Run Main.xml
generated
|
@ -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>
|
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -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.
|
@ -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
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue