Fixed excludes

This commit is contained in:
Auxilor
2022-10-01 22:34:06 +01:00
parent 18b58d584f
commit 06c1dc9afb
2 changed files with 3 additions and 2 deletions

View File

@@ -118,7 +118,6 @@ allprojects {
exclude(group = "com.github.cryptomorin", module = "XSeries")
exclude(group = "net.wesjd", module = "anvilgui")
exclude(group = "org.slf4j", module = "slf4j-api")
exclude(group = "com.google.code.gson", module = "gson")
}
configurations.testImplementation {

View File

@@ -16,7 +16,9 @@ dependencies {
implementation 'org.javassist:javassist:3.28.0-GA'
implementation 'org.mongodb:mongodb-driver-sync:4.6.0'
implementation 'org.litote.kmongo:kmongo-coroutine:4.6.0'
implementation 'com.moandjiezana.toml:toml4j:0.7.2'
implementation('com.moandjiezana.toml:toml4j:0.7.2') {
exclude group: 'com.google.code.gson', module: 'gson'
}
// Included in spigot jar
compileOnly 'com.google.code.gson:gson:2.8.8'