Version 0.9.0

This commit is contained in:
Erik C. Thauvin 2023-05-09 11:24:52 -07:00
parent 09d95118c6
commit 736c99bc1a
12 changed files with 31 additions and 20 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.6.1.jar!/" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.6.3.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.6.1-sources.jar!/" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.6.3-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -7,7 +7,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.6.1.jar",
"${HOME}/.rife2/dist/rife2-1.6.3.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=com.uwyn.rife2:bld-generated-version:0.9.0-SNAPSHOT
bld.extensions=com.uwyn.rife2:bld-generated-version:0.9.0
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2,RIFE2_SNAPSHOTS
rife2.downloadLocation=
rife2.version=1.6.1
rife2.version=1.6.3

View file

@ -21,8 +21,8 @@ public class SampleBuild extends Project {
downloadSources = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 3)));
}
public static void main(String[] args) {

View file

@ -1,17 +1,28 @@
/*
* This file is automatically generated.
* Do not modify! -- ALL CHANGES WILL BE ERASED!
*/
package com.example;
import java.util.Date;
/**
* Provides project version information.
*/
public final class GeneratedVersion {
public static final String PROJECT = "My App";
public static final Date BUILD_DATE = new Date(1682802935888L);
public static final String PROJECT = "Sample";
public static final Date BUILD_DATE = new Date(1682911078983L);
public static final int MAJOR = 1;
public static final int MINOR = 0;
public static final int REVISION = 1;
public static final String QUALIFIER = "rc1";
public static final String VERSION = "1.0.1-rc1";
/**
* Disables the default constructor.
*/
private GeneratedVersion() {
// no-op
throw new UnsupportedOperationException("Illegal constructor call.");
}
}
}