mirror of
https://github.com/ethauvin/bld.git
synced 2025-04-25 00:07:12 -07:00
Updated some dependency versions to the latest
This commit is contained in:
parent
9d769a9d29
commit
183097c4f9
4 changed files with 8 additions and 8 deletions
|
@ -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) {
|
||||
|
|
2
core
2
core
|
@ -1 +1 @@
|
|||
Subproject commit e685b2c0760674f47e889146033047760a089360
|
||||
Subproject commit 1f334516bee3984782f3bdfb59d6a6c525715cfb
|
|
@ -37,7 +37,7 @@ public class AppProjectBlueprint extends Project {
|
|||
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)));
|
||||
}
|
||||
}
|
|
@ -40,9 +40,9 @@ public class Rife2ProjectBlueprint extends WebProject {
|
|||
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)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue