Skip to content

Commit

Permalink
Updated for bld 1.8.0
Browse files Browse the repository at this point in the history
Added direct link to bld installation
  • Loading branch information
gbevin committed Jan 31, 2024
1 parent 42708d7 commit 50fe23f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 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 @@ -8,7 +8,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-1.7.5.jar",
"${HOME}/.bld/dist/bld-1.8.0.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/standalone/*.jar",
Expand Down
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=1.7.5
bld.version=1.8.0
10 changes: 5 additions & 5 deletions src/bld/java/rifers/RifersBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public RifersBuild() {
.include(dependency("com.uwyn.rife2", "rife2", version(1,7,3)));
scope(test)
.include(dependency("org.jsoup", "jsoup", version(1,16,2)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,0)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,1)));
scope(standalone)
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10", version(12,0,2)))
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10-servlet", version(12,0,2)))
.include(dependency("org.slf4j", "slf4j-simple", version(2,0,9)));
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10", version(12,0,5)))
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10-servlet", version(12,0,5)))
.include(dependency("org.slf4j", "slf4j-simple", version(2,0,11)));

precompileOperation()
.templateTypes(HTML);
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/templates/bld.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ <h1>Find out more</h1>

<p><code>bld</code> lets your build logic get out of the way so that you can focus on writing applications.</p>

<p class="links">
<a href="https://github.com/rife2/bld/wiki/Installation">Install bld through Homebrew, SDKMAN!, JBang, ...</a>
</p>
<p class="links">
<a href="https://github.com/rife2/bld/wiki">Visit the project and read the documentation</a>&nbsp;&nbsp;&nbsp;&nbsp;
</p>
Expand Down

0 comments on commit 50fe23f

Please sign in to comment.