added 1.21.7 helper so that we can start the plugin on 1.21.7 - new blocks may not be rendered correctly yet.

This commit is contained in:
Chaosjan44 2025-06-30 23:44:18 +02:00
parent 830805fe71
commit 1708a429bf
8 changed files with 728 additions and 0 deletions

View file

@ -0,0 +1,19 @@
eclipse {
project {
name = "Dynmap(Spigot-1.21.7)"
}
}
description = 'bukkit-helper-1.21.7'
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.21.7-R0.1-SNAPSHOT'
compileOnly ('org.spigotmc:spigot:1.21.7-R0.1-SNAPSHOT') {
exclude group: "com.mojang", module: "jtracy"
}
}