Skip to content

Commit

Permalink
upgrade the 3rd party libs
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Dec 13, 2023
1 parent d7fc7c5 commit 2e6b288
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,24 +135,24 @@ shadowJar {
}

dependencies {
implementation group: 'ch.qos.logback', name: 'logback-classic', version:'1.4.5'
implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version:'2.0.6'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version:'2.0.6'
implementation group: 'ch.qos.logback', name: 'logback-classic', version:'1.4.14'
implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version:'2.0.9'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version:'2.0.9'
api group: 'org.apache.httpcomponents', name: 'httpmime', version:'4.5.14' //this includes httpclient too
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.15.1'
implementation group: 'org.brotli', name: 'dec', version: '0.1.2'
implementation group: 'org.apache.ant', name: 'ant', version:'1.10.13'
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version:'1.75' //this includes bcprov-jdk18on too
implementation group: 'org.eclipse.jetty', name: 'jetty-io', version: '9.4.50.v20221201'
implementation group: 'org.apache.ant', name: 'ant', version:'1.10.14'
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version:'1.77' //this includes bcprov-jdk18on too
implementation group: 'org.eclipse.jetty', name: 'jetty-io', version: '9.4.53.v20231009'
implementation group: 'javax.servlet', name: 'servlet-api', version: '2.5'
implementation group: 'dnsjava', name: 'dnsjava', version: '3.5.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.2'
testImplementation group: 'com.google.guava', name: 'guava', version: '31.1-jre'
implementation group: 'dnsjava', name: 'dnsjava', version: '3.5.3'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.3'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.3'
testImplementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
testImplementation group: 'org.mockito', name: 'mockito-all', version:'1.10.19'
testImplementation group: 'io.netty', name: 'netty-all', version: '4.1.87.Final'
testImplementation group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.4.50.v20221201'
testImplementation group: 'org.springframework', name: 'spring-core', version: '5.3.25'
testImplementation group: 'io.netty', name: 'netty-all', version: '4.1.101.Final'
testImplementation group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.4.53.v20231009'
testImplementation group: 'org.springframework', name: 'spring-core', version: '5.3.31'
testImplementation group: 'com.nixxcode.jvmbrotli', name: 'jvmbrotli', version: '0.2.0'
testImplementation group: 'com.nixxcode.jvmbrotli', name: 'jvmbrotli-win32-x86-amd64', version: '0.2.0'
testImplementation group: 'com.nixxcode.jvmbrotli', name: 'jvmbrotli-linux-x86-amd64', version: '0.2.0'
Expand Down

0 comments on commit 2e6b288

Please sign in to comment.