dynmap/dynmap-api/build.gradle

24 lines
408 B
Groovy

description = "dynmap-api"
dependencies {
compile group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
compile "us.dynmap:DynmapCoreAPI:${project.version}"
}
jar {
classifier = 'unshaded'
}
shadowJar {
dependencies {
include(dependency("us.dynmap:DynmapCoreAPI:"))
}
destinationDir = file '../target'
classifier = ''
}
artifacts {
archives shadowJar
}