2022-02-07 17:04:12 +01:00
apply plugin: 'eclipse'
eclipse {
project {
name = "Dynmap(Spigot-1.13.2)"
}
}
2018-10-23 01:52:41 +02:00
description = 'bukkit-helper-1.13.2'
2023-08-20 21:38:38 +02:00
sourceCompatibility = targetCompatibility = compileJava . sourceCompatibility = compileJava . targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
2018-10-23 01:52:41 +02:00
dependencies {
2021-06-27 13:51:12 +02:00
implementation project ( ':bukkit-helper' )
implementation project ( ':dynmap-api' )
implementation project ( path: ':DynmapCore' , configuration: 'shadow' )
2023-06-10 05:42:40 +02:00
compileOnly group: 'org.bukkit' , name: 'bukkit' , version: '1.13.2-R0.1-SNAPSHOT'
compileOnly group: 'org.bukkit' , name: 'craftbukkit' , version: '1.13.2-R0.1-SNAPSHOT'
2018-10-23 01:52:41 +02:00
}