Skip to content

Commit

Permalink
Updated version to 1.4.1, upgraded to bld 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Jan 11, 2025
1 parent 47f3280 commit 0043bf9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .idea/libraries/bld.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-2.1.0.jar",
"${HOME}/.bld/dist/bld-2.2.0.jar",
"lib/**/*.jar"
]
}
Binary file modified lib/bld/bld-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ bld.downloadExtensionSources=true
bld.extensions=
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
bld.downloadLocation=
bld.version=2.1.0
bld.version=2.2.0
8 changes: 4 additions & 4 deletions src/bld/java/rife/bld/extension/Antlr4Build.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class Antlr4Build extends Project {
public Antlr4Build() {
pkg = "rife.bld.extension";
name = "Antlr4";
version = version(1,4,0);
version = version(1,4,1);
archiveBaseName = "bld-antlr4";

javaRelease = 17;
Expand All @@ -29,11 +29,11 @@ public Antlr4Build() {

repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(2,1,0)))
.include(dependency("com.uwyn.rife2", "bld", version(2,2,0)))
.include(dependency("org.antlr", "antlr4", version(4,11,1)));
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,11,0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,11,0)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,11,4)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,11,4)));

javadocOperation()
.javadocOptions()
Expand Down

0 comments on commit 0043bf9

Please sign in to comment.