Skip to content

Commit

Permalink
Minimum required Java version is now 16, drop support for spigot vers…
Browse files Browse the repository at this point in the history
…ions < 1.16.5
  • Loading branch information
TBlueF committed Mar 29, 2024
1 parent 757979b commit 498a4f3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion BlueMapCommon/build.gradle.kts
Expand Up @@ -12,7 +12,7 @@ plugins {
group = "de.bluecolored.bluemap.common"
version = "0.0.0"

val javaTarget = 11
val javaTarget = 16
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
Expand Down
2 changes: 1 addition & 1 deletion BlueMapCore/build.gradle.kts
Expand Up @@ -46,7 +46,7 @@ version = lastVersion +
System.setProperty("bluemap.version", version.toString())
println("Version: $version")

val javaTarget = 11
val javaTarget = 16
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
Expand Down
2 changes: 1 addition & 1 deletion implementations/cli/build.gradle.kts
Expand Up @@ -9,7 +9,7 @@ plugins {
group = "de.bluecolored.bluemap.cli"
version = System.getProperty("bluemap.version") ?: "?" // set by BlueMapCore

val javaTarget = 11
val javaTarget = 16
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
Expand Down
9 changes: 3 additions & 6 deletions implementations/spigot/build.gradle.kts
Expand Up @@ -10,7 +10,7 @@ plugins {
group = "de.bluecolored.bluemap.bukkit"
version = System.getProperty("bluemap.version") ?: "?" // set by BlueMapCore

val javaTarget = 11
val javaTarget = 16
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
exclude( group = "com.google.code.gson", module = "gson" )
}

shadow ("org.spigotmc:spigot-api:1.13-R0.1-SNAPSHOT")
shadow ("org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT")
implementation ("org.bstats:bstats-bukkit:2.2.1")

testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
Expand Down Expand Up @@ -128,10 +128,7 @@ modrinth {
uploadFile.set(tasks.findByName("shadowJar"))
loaders.addAll("spigot", "paper", "purpur")
gameVersions.addAll(
"1.13.2",
"1.14", "1.14.1", "1.14.2", "1.14.3", "1.14.4",
"1.15", "1.15.1", "1.15.2",
"1.16", "1.16.1", "1.16.2", "1.16.3", "1.16.4", "1.16.5",
"1.16.5",
"1.17", "1.17.1",
"1.18", "1.18.1", "1.18.2",
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
Expand Down
2 changes: 1 addition & 1 deletion implementations/spigot/src/main/resources/plugin.yml
Expand Up @@ -2,7 +2,7 @@ name: BlueMap
description: "A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)"
main: de.bluecolored.bluemap.bukkit.BukkitPlugin
version: "${version}"
api-version: 1.13
api-version: 1.16
author: "Blue (TBlueF / Lukas Rieger)"
website: "https://github.com/BlueMap-Minecraft"
commands:
Expand Down

0 comments on commit 498a4f3

Please sign in to comment.