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