Skip to content

Commit f65e0c2

Browse files
author
david
committed
[ci skip] Exclude Gson dependency from version-checker
Adjusted the build configuration to exclude the Gson dependency from the 'version-checker' module in the 'paper' project. This change helps to avoid potential conflicts and ensures a cleaner dependency management.
1 parent e3989e1 commit f65e0c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

paper/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ dependencies {
2525
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
2626
compileOnly(project(":annotations"))
2727

28-
api(project(":version-checker"))
28+
api(project(":version-checker")) {
29+
exclude("com.google.code.gson", "gson")
30+
}
2931

3032
annotationProcessor("org.projectlombok:lombok:1.18.34")
3133
}

0 commit comments

Comments
 (0)