Skip to content

Commit 7805e83

Browse files
committed
feat: add Minecraft 1.21.10 support
Add support for Minecraft 1.21.10 across all platforms: - bukkit-helper-121-10: Spigot/Paper support module - fabric-1.21.10: Fabric mod support module - forge-1.21.10: Forge mod support module Update version detection in Helper.java to use the new 1.21.10 helper for MC versions 1.21.10 and above.
1 parent c0f5082 commit 7805e83

File tree

70 files changed

+8300
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+8300
-1
lines changed

bukkit-helper-121-10/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.10)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.10'
8+
9+
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(21) // 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.10-R0.1-SNAPSHOT'
16+
compileOnly ('org.spigotmc:spigot:1.21.10-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
19+
}

0 commit comments

Comments
 (0)