dynmap/DynmapCoreAPI/build.gradle
stormboomer 0120c135c4 Added JDK 8 version compatiblity for DynmapCoreAPI.
It seems that this is missing from latest release and causes incompatiblity with older versions. This should resolve this
2023-08-29 20:07:22 +02:00

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
}
}
}