mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-14 14:25:21 +01:00
24 lines
393 B
Groovy
24 lines
393 B
Groovy
|
|
description = "dynmap-api"
|
|
|
|
dependencies {
|
|
implementation group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
|
implementation project(":DynmapCoreAPI")
|
|
}
|
|
|
|
jar {
|
|
classifier = 'unshaded'
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(":DynmapCoreAPI"))
|
|
}
|
|
destinationDir = file '../target'
|
|
classifier = ''
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|