Skip to content

Commit

Permalink
Bumped JUnit versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Mar 21, 2024
1 parent f017dce commit 1e7c972
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion examples/src/bld/java/com/example/ExamplesBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ public ExamplesBuild() {
name = "Examples";
version = version(0, 1, 0);

downloadSources = true;
autoDownloadPurge = true;

repositories = List.of(MAVEN_CENTRAL);

scope(test).include(dependency("org.testng", "testng", version(7, 9, 0)));
Expand All @@ -38,4 +41,4 @@ public void test() throws Exception {
.packages("com.example")
.execute();
}
}
}
8 changes: 4 additions & 4 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, 3);
version = version(0, 9, 4, "SNAPSHOTS");

javaRelease = 17;
downloadSources = true;
Expand All @@ -48,9 +48,9 @@ public TestNgOperationBuild() {

scope(test)
.include(dependency("org.testng", "testng", version(7, 9, 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)))
.include(dependency("org.assertj", "assertj-core", version(3, 25, 2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));

javadocOperation()
.javadocOptions()
Expand Down

0 comments on commit 1e7c972

Please sign in to comment.