Skip to content

Commit 96168b1

Browse files
committed
Fix missing build file
1 parent d8bc15d commit 96168b1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

bukkit-helper-121-11/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.11)"
4+
}
5+
}
6+
7+
description = 'bukkit-helper-1.21.11'
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.11-R0.1-SNAPSHOT'
16+
compileOnly ('org.spigotmc:spigot:1.21.11-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
19+
}

0 commit comments

Comments
 (0)