Skip to content

Commit 9093b07

Browse files
committed
added 1.21.7 helper so that we can start the plugin on 1.21.7 - new blocks may not be rendered correctly yet.
1 parent 23f8b88 commit 9093b07

File tree

8 files changed

+728
-0
lines changed

8 files changed

+728
-0
lines changed

bukkit-helper-121-7/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build/

bukkit-helper-121-7/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
eclipse {
2+
project {
3+
name = "Dynmap(Spigot-1.21.7)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.7'
8+
9+
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
10+
11+
dependencies {
12+
implementation project(':bukkit-helper')
13+
implementation project(':dynmap-api')
14+
implementation project(path: ':DynmapCore', configuration: 'shadow')
15+
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.7-R0.1-SNAPSHOT'
16+
compileOnly ('org.spigotmc:spigot:1.21.7-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
19+
}

0 commit comments

Comments
 (0)