Skip to content

Commit

Permalink
Merge pull request #141 from FairyProject/fix/dependency
Browse files Browse the repository at this point in the history
Fixed many dependency issues
  • Loading branch information
LeeGodSRC authored Mar 18, 2024
2 parents b8443a4 + 37bc18e commit 0aae4e5
Show file tree
Hide file tree
Showing 6 changed files with 2,613 additions and 7 deletions.
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
hikari = "3.4.5"
guava = "30.0-jre"
gson = "2.8.6"
yaml = "2.0"
yaml = "2.2"
common-lang3 = "3.11"
common-io = "2.7"
annotations = "19.0.0"
Expand All @@ -11,6 +11,7 @@ persistence-api = "2.2"
asm = "9.6"
packetevents = "2.2.1"
bukkit-api = "1.16.5-R0.1-SNAPSHOT"
bukkit20-api = "1.20.4-R0.1-SNAPSHOT"

# Adventure
adventure = "4.16.0"
Expand All @@ -23,6 +24,7 @@ mockito = "4.11.0"
[libraries]
spigot = { module = "org.spigotmc:spigot-api", version.ref = "bukkit-api" }
paper = { module = "com.destroystokyo.paper:paper-api", version.ref = "bukkit-api" }
spigot20 = { module = "org.spigotmc:spigot-api", version.ref = "bukkit20-api" }

hikari-cp = { module = "com.zaxxer:HikariCP", version.ref = "hikari" }
guava = { module = "com.google.guava:guava", version.ref = "guava" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
dependencies {
api "com.github.cryptomorin:XSeries:9.9.0"

compileOnly(libs.spigot)
implementation("com.google.code.findbugs:jsr305:3.0.2")
compileOnly(libs.spigot20)
}

module {}
module {}

sourceCompatibility = 17
targetCompatibility = 1.8
Loading

0 comments on commit 0aae4e5

Please sign in to comment.