Update dependencies

This commit is contained in:
TheMode 2021-07-14 03:13:03 +02:00
parent e76d7486b3
commit a828a02499
1 changed files with 8 additions and 8 deletions

View File

@ -101,11 +101,11 @@ tasks.withType(Zip).configureEach {
dependencies {
// Junit Testing Framework
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.6.2')
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.7.2')
// Only here to ensure J9 module support for extensions and our classloaders
testCompileOnly "org.mockito:mockito-core:2.28.2"
testCompileOnly 'org.mockito:mockito-core:3.11.1'
// Netty
api 'io.netty:netty-handler:4.1.65.Final'
@ -117,16 +117,16 @@ dependencies {
api 'it.unimi.dsi:fastutil:8.5.4'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
api 'com.google.code.gson:gson:2.8.6'
api 'com.google.code.gson:gson:2.8.7'
// Noise library for terrain generation
// https://jitpack.io/#Articdive/Jnoise
api 'com.github.Articdive:Jnoise:2.1.0'
// Logging
api 'org.apache.logging.log4j:log4j-core:2.14.0'
api 'org.apache.logging.log4j:log4j-core:2.14.1'
// SLF4J is the base logger for most libraries, therefore we can hook it into log4j2.
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.0'
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
// https://mvnrepository.com/artifact/org.jline/jline
implementation group: 'org.jline', name: 'jline', version: '3.20.0'
@ -135,10 +135,10 @@ dependencies {
// https://search.maven.org/artifact/org.fusesource.jansi/jansi/2.3.2/jar
implementation 'org.fusesource.jansi:jansi:2.3.2'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.2'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.3'
// Guava 21.0+ required for Mixin
api 'com.google.guava:guava:30.1-jre'
api 'com.google.guava:guava:30.1.1-jre'
// Code modification
api "org.ow2.asm:asm:${asmVersion}"