mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-10 20:50:11 +01:00
27 lines
329 B
Groovy
27 lines
329 B
Groovy
|
|
apply plugin: 'eclipse'
|
|
|
|
eclipse {
|
|
project {
|
|
name = "Dynmap(DynmapCoreAPI)"
|
|
}
|
|
}
|
|
|
|
description = "DynmapCoreAPI"
|
|
|
|
jar {
|
|
destinationDir = file '../target'
|
|
}
|
|
|
|
artifacts {
|
|
archives jar
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.java
|
|
}
|
|
}
|
|
}
|