Bumped to version 0.9.6-SNAPSHOT

This commit is contained in:
Erik C. Thauvin 2024-04-17 17:07:48 -07:00
parent 599190aae1
commit 0ee3b482c0
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-generated-version:0.9.5
bld.extensions=com.uwyn.rife2:bld-generated-version:0.9.6-SNAPSHOT
bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation=
bld.version=1.9.0

View file

@ -25,6 +25,8 @@ public class SampleBuild extends Project {
mainClass = "com.example.SampleMain";
version = version(1, 0, 1, "rc1");
javaRelease = 17;
autoDownloadPurge = true;
downloadSources = true;

View file

@ -12,7 +12,7 @@ import java.util.Date;
*/
public final class GeneratedVersion {
public static final String PROJECT = "Sample";
public static final Date BUILD_DATE = new Date(1708978279960L);
public static final Date BUILD_DATE = new Date(1713398927971L);
public static final int MAJOR = 1;
public static final int MINOR = 0;
public static final int REVISION = 1;

View file

@ -36,7 +36,7 @@ public class GeneratedVersionOperationBuild extends Project {
public GeneratedVersionOperationBuild() {
pkg = "rife.bld.extension";
name = "GeneratedVersionOperation";
version = version(0, 9, 5);
version = version(0, 9, 6, "SNAPSHOT");
javaRelease = 17;
downloadSources = true;
@ -78,7 +78,7 @@ public class GeneratedVersionOperationBuild extends Project {
.license(
new PublishLicense()
.name("The Apache License, Version 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.txt")
.url("https://www.apache.org/licenses/LICENSE-2.0.txt")
)
.scm(
new PublishScm()