2019-11-02 17:23:48 +01:00
|
|
|
dependencies {
|
|
|
|
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
|
2020-01-19 01:51:30 +01:00
|
|
|
compile project(':BlueMapCommon')
|
2019-11-02 17:23:48 +01:00
|
|
|
}
|
2020-03-30 01:45:32 +02:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes 'Main-Class' : "de.bluecolored.bluemap.cli.BlueMapCLI"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn shadowJar {
|
|
|
|
destinationDir = file '../build/release'
|
|
|
|
archiveFileName = "BlueMap-${version}-cli.jar"
|
|
|
|
|
2020-04-20 13:49:56 +02:00
|
|
|
//relocate 'com.flowpowered.math', 'de.bluecolored.shadow.flowpowered.math' //DON'T relocate this, because the API depends on it
|
2020-04-06 17:55:35 +02:00
|
|
|
relocate 'com.google.common', 'de.bluecolored.shadow.google.common'
|
|
|
|
relocate 'com.google.gson', 'de.bluecolored.shadow.google.gson'
|
|
|
|
relocate 'com.google.thirdparty', 'de.bluecolored.shadow.google.thirdparty'
|
|
|
|
relocate 'com.typesafe.config', 'de.bluecolored.shadow.typesafe.config'
|
|
|
|
relocate 'net.querz.nbt', 'de.bluecolored.shadow.querz.nbt'
|
|
|
|
relocate 'ninja.leaping.configurate', 'de.bluecolored.shadow.ninja.leaping.configurate'
|
|
|
|
relocate 'org.apache.commons.cli', 'de.bluecolored.shadow.apache.commons.cli'
|
|
|
|
relocate 'org.apache.commons.io', 'de.bluecolored.shadow.apache.commons.io'
|
|
|
|
relocate 'org.apache.commons.lang3', 'de.bluecolored.shadow.apache.commons.lang3'
|
|
|
|
relocate 'org.bstats.bukkit', 'de.bluecolored.shadow.bstats.bukkit'
|
|
|
|
relocate 'org.yaml.snakeyaml', 'de.bluecolored.shadow.yaml.snakeyaml'
|
2020-03-30 01:45:32 +02:00
|
|
|
}
|