Skip to content

Commit

Permalink
change jackson version
Browse files Browse the repository at this point in the history
  • Loading branch information
MORIMORI0317 committed Mar 16, 2024
1 parent a40263b commit 8fb9098
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ dependencies {
implementation "dev.felnull:felnull-java-library:${rootProject.felnull_version}"
implementation("dev.arbjerg:lavaplayer:${rootProject.lava_version}") {
exclude group: 'dev.arbjerg', module: 'lavaplayer-natives'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
implementation('com.fasterxml.jackson.core:jackson-core:2.14.3')
implementation('com.fasterxml.jackson.core:jackson-databind:2.14.3')


implementation 'com.github.sealedtx:java-youtube-downloader:3.2.3'
implementation 'com.mpatric:mp3agic:0.9.1'
}
Expand Down
4 changes: 4 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ dependencies {

shadowIn("dev.arbjerg:lavaplayer:${rootProject.lava_version}") {
exclude group: 'dev.arbjerg', module: 'lavaplayer-natives'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
shadowIn('com.fasterxml.jackson.core:jackson-core:2.14.3')
shadowIn('com.fasterxml.jackson.core:jackson-databind:2.14.3')

shadowIn 'com.github.sealedtx:java-youtube-downloader:3.2.3'

Expand Down
4 changes: 4 additions & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ dependencies {

shadowIn("dev.arbjerg:lavaplayer:${rootProject.lava_version}") {
exclude group: 'dev.arbjerg', module: 'lavaplayer-natives'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
shadowIn('com.fasterxml.jackson.core:jackson-core:2.14.3')
shadowIn('com.fasterxml.jackson.core:jackson-databind:2.14.3')

shadowIn 'com.github.sealedtx:java-youtube-downloader:3.2.3'
shadowIn "dev.felnull:felnull-java-library:${rootProject.felnull_version}"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 8fb9098

Please sign in to comment.