Upgraded to bld 1.7.2

This commit is contained in:
Erik C. Thauvin 2023-08-20 19:01:59 -07:00
parent 0cf1c230d4
commit 3038f20315
8 changed files with 24 additions and 13 deletions

View file

@ -2,12 +2,12 @@
<library name="bld">
<CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.0.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.2.jar!/" />
<root url="file://$PROJECT_DIR$/lib/bld" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.0-sources.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.2-sources.jar!/" />
<root url="file://$PROJECT_DIR$/lib/bld" />
</SOURCES>
<jarDirectory url="file://$PROJECT_DIR$/lib/bld" recursive="false" />

Binary file not shown.

View file

@ -1,6 +1,6 @@
#Sun Apr 02 10:32:44 PDT 2023
bld.extension=com.uwyn.rife2:bld-property-file:0.9.2
bld.repositories=RIFE2_SNAPSHOTS,RIFE2_RELEASES,MAVEN_CENTRAL
bld.extension=com.uwyn.rife2:bld-property-file:0.9.3-SNAPSHOT
bld.repositories=MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.version=1.7.1
bld.version=1.7.2

View file

@ -14,6 +14,17 @@ import static rife.bld.dependencies.Repository.RIFE2_RELEASES;
import static rife.bld.dependencies.Scope.test;
import static rife.bld.extension.propertyfile.Calc.ADD;
/**
* Example build.
*
* <ul style="list-style-type:none">
* <li>./bld updateMajor run</li>
* <li>./bld updateMinor run</li>
* <li>./bld updatePath run</li>
* <li>./bld updateRelease run</li>
* <li>./bld deleteVersion run</li>
* </ul>
*/
public class PropertyFileExampleBuild extends Project {
final EntryDate buildDateEntry = new EntryDate("build.date").now().pattern("yyyy-MM-dd");
@ -29,8 +40,8 @@ public class PropertyFileExampleBuild extends Project {
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 3)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 0)));
}
public static void main(String[] args) {