Skip to content

Commit

Permalink
Updated dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Nov 24, 2023
1 parent c43ee03 commit 29a05f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/bld/java/rife/AbstractRife2Build.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ public AbstractRife2Build()
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(test)
.include(dependency("org.slf4j", "slf4j-simple", version(2,0,9)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,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("com.h2database", "h2", version(2,2,224)))
.include(dependency("net.sourceforge.htmlunit", "htmlunit", version(2,70,0)))
.include(dependency("org.postgresql", "postgresql", version(42,6,0)))
.include(dependency("com.mysql", "mysql-connector-j", version(8,1,0)))
.include(dependency("org.mariadb.jdbc", "mariadb-java-client", version(3,2,0)))
.include(dependency("org.postgresql", "postgresql", version(42,7,0)))
.include(dependency("com.mysql", "mysql-connector-j", version(8,2,0)))
.include(dependency("org.mariadb.jdbc", "mariadb-java-client", version(3,3,0)))
.include(dependency("org.hsqldb", "hsqldb", version(2,7,2)))
.include(dependency("org.apache.derby", "derby", version("10.16.1.1")))
.include(dependency("org.apache.derby", "derbytools", version("10.16.1.1")))
.include(dependency("org.apache.derby", "derby", version("10.17.1.0")))
.include(dependency("org.apache.derby", "derbytools", version("10.17.1.0")))
.include(dependency("com.oracle.database.jdbc", "ojdbc11", version("23.3.0.23.09")));

cleanOperation()
Expand Down

0 comments on commit 29a05f0

Please sign in to comment.