dynmap-neoforge/bukkit-helper-118/build.gradle
Renovate Bot d37d35a8dc
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
Checking for spelling errors / rojopolis/spellcheck (push) Has been cancelled
Update dependency org.spigotmc:spigot-api
2026-06-29 06:14:35 +00:00

17 lines
644 B
Groovy

eclipse {
project {
name = "Dynmap(Spigot-1.18)"
}
}
description = 'bukkit-helper-1.18'
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.18-rc3-R0.1-SNAPSHOT'
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.18-R0.1-SNAPSHOT'
}