-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deps, swap out slf4j for log4j2-api
- Loading branch information
1 parent
cccb64a
commit c19f63e
Showing
8 changed files
with
44 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
object Libs { | ||
private const val junitVersion = "5.6.2" | ||
private const val junitVersion = "5.7.1" | ||
const val junitApi = "org.junit.jupiter:junit-jupiter-api:$junitVersion" | ||
const val junitEngine = "org.junit.jupiter:junit-jupiter-engine:$junitVersion" | ||
const val junitVintageEngine = "org.junit.vintage:junit-vintage-engine:$junitVersion" | ||
const val guava = "com.google.guava:guava" | ||
private const val kyoriTextVersion = "3.0.4" | ||
const val kyoriText = "net.kyori:text-api:$kyoriTextVersion" | ||
const val kyoriTextPlain = "net.kyori:text-serializer-plain:$kyoriTextVersion" | ||
const val autoCommon = "com.google.auto:auto-common:0.10" | ||
private const val autoValueVersion = "1.7.3" | ||
const val autoCommon = "com.google.auto:auto-common:0.11" | ||
private const val autoValueVersion = "1.7.4" | ||
const val autoValueAnnotations = "com.google.auto.value:auto-value-annotations:$autoValueVersion" | ||
const val autoValueProcessor = "com.google.auto.value:auto-value:$autoValueVersion" | ||
const val autoService = "com.google.auto.service:auto-service:1.0-rc6" | ||
const val javapoet = "com.squareup:javapoet:1.13.0" | ||
const val slf4j = "org.slf4j:slf4j-api:1.7.30" | ||
private const val logbackVersion = "1.2.3" | ||
const val logbackClassic = "ch.qos.logback:logback-classic:$logbackVersion" | ||
const val logbackCore = "ch.qos.logback:logback-core:$logbackVersion" | ||
// Sync with Mojang's Log4j | ||
private const val log4jVersion = "2.8.1" | ||
const val log4jApi = "org.apache.logging.log4j:log4j-api:$log4jVersion" | ||
const val log4jCore = "org.apache.logging.log4j:log4j-core:$log4jVersion" | ||
const val javaxAnnotations = "com.google.code.findbugs:jsr305:3.0.2" | ||
const val compileTesting = "com.google.testing.compile:compile-testing:0.18" | ||
const val mockito = "org.mockito:mockito-core:3.3.3" | ||
const val compileTesting = "com.google.testing.compile:compile-testing:0.19" | ||
const val mockito = "org.mockito:mockito-core:3.8.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |