Skip to content

Commit 2cf670d

Browse files
committed
Updated for latest bld 2.0.0 snapshot
1 parent bd78138 commit 2cf670d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.idea/libraries/bld.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/bld/bld-wrapper.jar

2.4 KB
Binary file not shown.

lib/bld/bld-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ bld.extension-antlr=com.uwyn.rife2:bld-antlr4:1.2.8
44
bld.extension-tests=com.uwyn.rife2:bld-tests-badge:1.4.8
55
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
66
bld.downloadLocation=
7-
bld.version=1.9.1
7+
bld.version=2.0.0-SNAPSHOT

src/bld/java/rife/CoreBuild.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55
package rife;
66

7+
import rife.bld.dependencies.VersionNumber;
78
import rife.bld.operations.*;
89
import rife.bld.publish.*;
910
import rife.tools.FileUtils;
@@ -18,7 +19,7 @@ public CoreBuild()
1819
throws Exception {
1920
name = "rife2-core";
2021

21-
version = version(FileUtils.readString(new File(srcMainResourcesDirectory(), "CORE_VERSION")));
22+
version = VersionNumber.parse(FileUtils.readString(new File(srcMainResourcesDirectory(), "CORE_VERSION")));
2223

2324
antlr4Operation
2425
.sourceDirectories(List.of(new File(srcMainDirectory(), "antlr")))

0 commit comments

Comments
 (0)