Skip to content

Commit 9bb99d1

Browse files
committed
Spigot 1.21.4 support
(ability to run only, not the ability to render any of the new pale garden blocks)
1 parent 33c1b20 commit 9bb99d1

File tree

9 files changed

+681
-0
lines changed

9 files changed

+681
-0
lines changed

bukkit-helper-121-3/.gitignore

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

bukkit-helper-121-4/.gitignore

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

bukkit-helper-121-4/build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
eclipse {
2+
project {
3+
name = "Dynmap(Spigot-1.21.4)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.4'
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.4-R0.1-SNAPSHOT'
16+
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.4-R0.1-SNAPSHOT'
17+
}

0 commit comments

Comments
 (0)