Skip to content

Commit

Permalink
Bumped bld to version 2.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jul 23, 2024
1 parent ce4a081 commit 61a40e0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/.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 examples/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-1.9.1.jar",
"${HOME}/.bld/dist/bld-2.0.0-SNAPSHOT.jar",
"lib/**/*.jar"
]
}
Binary file modified examples/lib/bld/bld-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-boot=com.uwyn.rife2:bld-spring-boot:0.9.6
bld.extension-boot=com.uwyn.rife2:bld-spring-boot:0.9.7-SNAPSHOT
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=1.9.1
bld.version=2.0.0-SNAPSHOT
2 changes: 1 addition & 1 deletion src/bld/java/rife/bld/extension/SpringBootBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class SpringBootBuild extends Project {
public SpringBootBuild() {
pkg = "rife.bld.extension";
name = "bld-spring-boot";
version = version(0, 9, 6);
version = version(0, 9, 7, "SNAPSHOT");

javaRelease = 17;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/rife/bld/extension/BootJarOperationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import static org.assertj.core.api.Assertions.assertThatCode;

class BootJarOperationTest {
private static final String BLD = "bld-1.9.1.jar";
private static final String BLD = "bld-2.0.0-20240720.190338-27.jar";
private static final String BOOT_VERSION = "3.3.2";
private static final String EXAMPLES_LIB_COMPILE = "examples/lib/compile/";
private static final String EXAMPLES_LIB_RUNTIME = "examples/lib/runtime/";
Expand Down

0 comments on commit 61a40e0

Please sign in to comment.