dynmap/DynmapCoreAPI/build.gradle
2022-01-22 18:54:44 -06:00

18 lines
231 B
Groovy

description = "DynmapCoreAPI"
jar {
destinationDir = file '../target'
}
artifacts {
archives jar
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}