Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ jobs:
cd buildtools
wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
java -jar BuildTools.jar --rev 1.21.10 --remapped
java -jar BuildTools.jar --rev 1.21.11 --remapped
cd ..
timeout-minutes: 30
timeout-minutes: 45

- name: Build with Gradle
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

# various other potential build files
/build
**/build/
/bin
/dist
/manifest.mf
Expand Down
19 changes: 19 additions & 0 deletions bukkit-helper-121-11/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
eclipse {
project {
name = "Dynmap(Spigot-1.21.11)"
}
}

description = 'bukkit-helper-1.21.11'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(21) // Need this here so eclipse task generates correctly.

dependencies {
implementation project(':bukkit-helper')
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
compileOnly 'org.spigotmc:spigot-api:1.21.11-R0.1-SNAPSHOT'
compileOnly ('org.spigotmc:spigot:1.21.11-R0.1-SNAPSHOT:remapped-mojang') {
exclude group: "com.mojang", module: "jtracy"
}
}
Loading
Loading