mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 11:15:21 +01:00
0120c135c4
It seems that this is missing from latest release and causes incompatiblity with older versions. This should resolve this
28 lines
502 B
Groovy
28 lines
502 B
Groovy
|
|
apply plugin: 'eclipse'
|
|
|
|
eclipse {
|
|
project {
|
|
name = "Dynmap(DynmapCoreAPI)"
|
|
}
|
|
}
|
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
|
|
|
description = "DynmapCoreAPI"
|
|
|
|
jar {
|
|
destinationDir = file '../target'
|
|
}
|
|
|
|
artifacts {
|
|
archives jar
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.java
|
|
}
|
|
}
|
|
}
|