Skip to content
Open
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
4 changes: 0 additions & 4 deletions .vscode/settings.json

This file was deleted.

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Workaround for Shadow not supporting Java 19 classes.
// Workaround for Shadow not supporting newer Java class files.
// Remove this once Shadow updates.
// See: https://github.com/johnrengelman/shadow/pull/770
// See: https://discord.com/channels/722722769950998560/793019909055578113/978939925061857315
buildscript {
configurations.all {
resolutionStrategy {
force("org.ow2.asm:asm:9.5")
force("org.ow2.asm:asm-commons:9.5")
force("org.ow2.asm:asm:9.8")
force("org.ow2.asm:asm-commons:9.8")
}
}
}
Expand Down
1 change: 1 addition & 0 deletions bukkit-helper-261-2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build/
19 changes: 19 additions & 0 deletions bukkit-helper-261-2/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
eclipse {
project {
name = "Dynmap(Spigot-26.1.2)"
}
}

description = 'bukkit-helper-26.1.2'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17)

tasks.named('compileJava') {
enabled = false
}

dependencies {
implementation project(':bukkit-helper')
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
}
Loading