diff --git a/build.gradle.kts b/build.gradle.kts index d6818d5f..0e8cfaf5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/eco-core/core-plugin/build.gradle b/eco-core/core-plugin/build.gradle index 74afa4f3..da3c0823 100644 --- a/eco-core/core-plugin/build.gradle +++ b/eco-core/core-plugin/build.gradle @@ -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'