Skip to content

Commit

Permalink
Updated junrar.
Browse files Browse the repository at this point in the history
  • Loading branch information
dscalzi committed Dec 6, 2018
1 parent c6fc4bd commit 1703b3a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion ZipExtractor-Bukkit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,7 @@ shadowJar {

relocate 'org.bstats', 'com.dscalzi.zipextractor.bukkit.bstats'

minimize()
minimize() {
exclude(dependency('commons-logging:commons-logging:.*'))
}
}
6 changes: 4 additions & 2 deletions ZipExtractor-Core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ repositories {

dependencies {
implementation 'org.tukaani:xz:1.8'
implementation ('com.github.junrar:junrar:3.0.0') {
implementation ('com.github.junrar:junrar:3.1.0') {
exclude(module: 'commons-vfs2')
}
}

shadowJar {
minimize()
minimize() {
exclude(dependency('commons-logging:commons-logging:.*'))
}
}
4 changes: 3 additions & 1 deletion ZipExtractor-Sponge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ dependencies {
shadowJar {
classifier 'dist'

minimize()
minimize() {
exclude(dependency('commons-logging:commons-logging:.*'))
}
}

0 comments on commit 1703b3a

Please sign in to comment.