Merge dynmap-api into common dynmap

This commit is contained in:
Mike Primm 2018-08-11 23:42:08 -05:00
parent e4d0261a07
commit acfecce539
18 changed files with 260 additions and 53 deletions

23
dynmap-api/build.gradle Normal file
View file

@ -0,0 +1,23 @@
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
}