Skip to content

Commit

Permalink
Bumped JUnit versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Feb 26, 2024
1 parent ea19c6b commit d315ebc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@ public PropertyFileExampleBuild() {
version = version(0, 1, 0);

javaRelease = 17;

downloadSources = true;
autoDownloadPurge = true;

repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);

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

public static void main(String[] args) {
Expand Down Expand Up @@ -120,4 +122,4 @@ public void deleteVersion() throws Exception {
.entry(buildDateEntry.delete())
.execute();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class PropertyFileBuild extends Project {
public PropertyFileBuild() {
pkg = "rife.bld.extension";
name = "bld-property-file";
version = version(0, 9, 4);
version = version(0, 9, 5, "SNAPSHOT");

javaRelease = 17;
downloadSources = true;
Expand All @@ -48,8 +48,8 @@ public PropertyFileBuild() {
.include(dependency("com.uwyn.rife2", "bld", version(1, 8, 0)));
scope(test)
.include(dependency("org.jsoup", "jsoup", version(1, 17, 2)))
.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.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-joda-time:2.2.0"));

javadocOperation()
Expand Down

0 comments on commit d315ebc

Please sign in to comment.