mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-14 14:25:21 +01:00
18 lines
640 B
Groovy
18 lines
640 B
Groovy
eclipse {
|
|
project {
|
|
name = "Dynmap(Spigot-1.20)"
|
|
}
|
|
}
|
|
|
|
description = 'bukkit-helper-1.20'
|
|
|
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
|
|
|
|
dependencies {
|
|
implementation project(':bukkit-helper')
|
|
implementation project(':dynmap-api')
|
|
implementation project(path: ':DynmapCore', configuration: 'shadow')
|
|
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20-R0.1-SNAPSHOT'
|
|
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.20-R0.1-SNAPSHOT'
|
|
}
|