Skip to content

Commit 85f5ec6

Browse files
authored
Merge pull request #4198 from jacob1/1.21.5-bukkit
Spigot/Paper 1.21.5 support
2 parents 10e6739 + c070ca9 commit 85f5ec6

File tree

8 files changed

+726
-0
lines changed

8 files changed

+726
-0
lines changed

bukkit-helper-121-5/.gitignore

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

bukkit-helper-121-5/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.5)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.5'
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.5-R0.1-SNAPSHOT'
16+
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.5-R0.1-SNAPSHOT'
17+
}

0 commit comments

Comments
 (0)