Skip to content

Commit

Permalink
[ci skip] Exclude Gson from version-checker dependency in Velocity.
Browse files Browse the repository at this point in the history
This change ensures that Gson is no longer included as a transitive dependency for version-checker. It helps avoid potential conflicts with other Gson versions in the project. The rest of the build dependencies remain unaffected.
  • Loading branch information
NonSwag committed Dec 13, 2024
1 parent 0c19850 commit 5475dcf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ dependencies {
implementation("org.bstats:bstats-velocity:3.1.0")
implementation("net.thenextlvl.core:files:2.0.0")
implementation("net.thenextlvl.core:i18n:1.0.20")
implementation("net.thenextlvl.core:version-checker:2.0.1")
implementation("net.thenextlvl.core:version-checker:2.0.1") {
exclude("com.google.code.gson")
}

annotationProcessor("org.projectlombok:lombok:1.18.36")
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
Expand Down

0 comments on commit 5475dcf

Please sign in to comment.