dynmap/DynmapCoreAPI/build.gradle

28 lines
508 B
Groovy
Raw Normal View History

2022-02-07 17:04:12 +01:00
apply plugin: 'eclipse'
eclipse {
project {
name = "Dynmap(DynmapCoreAPI)"
}
}
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
2022-02-07 17:04:12 +01:00
description = "DynmapCoreAPI"
jar {
2024-04-27 05:50:43 +02:00
destinationDirectory = file '../target'
}
artifacts {
archives jar
}
2022-01-23 01:54:44 +01:00
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}