Skip to content

Commit

Permalink
build: update libraries
Browse files Browse the repository at this point in the history
comet and plugin:
* adventure-api & adventure-text-minimesasge 4.13.0 -> 4.14.0
* item-nbt-api-plugin 2.11.2 -> 2.11.3
comet:
* make org.jetbrains:annotations compileOnly
  • Loading branch information
iGabyTM committed Jul 30, 2023
1 parent 9075c8e commit 8f54f39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions comet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ dependencies {
implementation 'commons-cli:commons-cli:1.5.0'

// Adventure
implementation 'net.kyori:adventure-platform-bukkit:4.3.0'
implementation 'net.kyori:adventure-text-minimessage:4.13.0'
def adventureVersion = '4.14.0'
implementation "net.kyori:adventure-api:$adventureVersion"
implementation "net.kyori:adventure-text-minimessage:$adventureVersion"

// SQLite
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'

// JetBrains annotations
implementation 'org.jetbrains:annotations:23.0.0'
compileOnly 'org.jetbrains:annotations:23.0.0'
}

shadowJar {
Expand Down
7 changes: 4 additions & 3 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ dependencies {
compileOnly('com.github.MilkBowl:VaultAPI:1.7') { transitive false }

// NBT
compileOnly 'de.tr7zw:item-nbt-api-plugin:2.11.2'
compileOnly 'de.tr7zw:item-nbt-api-plugin:2.11.3'

// Adventure
implementation 'net.kyori:adventure-api:4.13.0'
def adventureVersion = '4.14.0'
implementation "net.kyori:adventure-api:$adventureVersion"
implementation 'net.kyori:adventure-platform-bukkit:4.3.0'
implementation 'net.kyori:adventure-text-minimessage:4.13.0'
implementation "net.kyori:adventure-text-minimessage:$adventureVersion"

// GUis and commands
implementation 'dev.triumphteam:triumph-gui:3.1.5'
Expand Down

0 comments on commit 8f54f39

Please sign in to comment.