Skip to content

Commit

Permalink
Updated some dependency versions to the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Feb 25, 2024
1 parent 9d769a9 commit 183097c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ public class MyappBuild extends Project {
scope(test)
.include(dependency("org.junit.jupiter",
"junit-jupiter",
version(5,10,1)))
version(5,10,2)))
.include(dependency("org.junit.platform",
"junit-platform-console-standalone",
version(1,10,1)));
version(1,10,2)));
}

public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion core
4 changes: 2 additions & 2 deletions src/main/java/rife/bld/blueprints/AppProjectBlueprint.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public AppProjectBlueprint(File work, String packageName, String projectName, Ve
downloadSources = true;
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS);
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)));
}
}
6 changes: 3 additions & 3 deletions src/main/java/rife/bld/blueprints/Rife2ProjectBlueprint.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public Rife2ProjectBlueprint(File work, String packageName, String projectName,
scope(compile)
.include(dependency("com.uwyn.rife2", "rife2", version(1,7,3)));
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.jsoup", "jsoup", version(1,17,3)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,2)));
scope(standalone)
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10", version(12,0,6)))
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10-servlet", version(12,0,6)))
Expand Down

0 comments on commit 183097c

Please sign in to comment.