Skip to content

Commit

Permalink
Version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Aug 21, 2023
1 parent 945e6bc commit ed4241f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-testng:0.9.0
bld.extensions=com.uwyn.rife2:bld-testng:0.9.1
bld.repositories=MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation=
bld.sourceDirectories=
Expand Down
4 changes: 2 additions & 2 deletions src/bld/java/rife/bld/extension/TestNgOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class TestNgOperationBuild extends Project {
public TestNgOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-testng";
version = version(0, 9, 1, "SNAPSHOT");
version = version(0, 9, 1);

javaRelease = 17;
downloadSources = true;
Expand All @@ -44,7 +44,7 @@ public TestNgOperationBuild() {
var rife2 = version(1, 7, 0);
scope(compile)
.include(dependency("com.uwyn.rife2", "rife2", rife2))
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 1)));
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 2)));

scope(test)
.include(dependency("org.testng", "testng", version(7, 8, 0)))
Expand Down

0 comments on commit ed4241f

Please sign in to comment.