Require Java 11

This commit is contained in:
Lukas Rieger (Blue) 2022-01-16 14:20:27 +01:00
parent 729de9c20e
commit 3f049d0523
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
10 changed files with 28 additions and 8 deletions

@ -1 +1 @@
Subproject commit 30bde97bd9700ff412ab73911eb56b76c879b503
Subproject commit 93c227b5cc8903aafb9091b552682ffc5ba51e3c

View File

@ -19,7 +19,7 @@ releaseProperties.load(file("../release.properties").inputStream())
group = "de.bluecolored.bluemap.common"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)

View File

@ -16,7 +16,7 @@ releaseProperties.load(file("../release.properties").inputStream())
group = "de.bluecolored.bluemap.core"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)

View File

@ -18,7 +18,7 @@ releaseProperties.load(file("../../release.properties").inputStream())
group = "de.bluecolored.bluemap.cli"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)

View File

@ -20,7 +20,7 @@ releaseProperties.load(file("../../release.properties").inputStream())
group = "de.bluecolored.bluemap.fabric"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
@ -39,6 +39,9 @@ repositories {
maven {
setUrl("https://maven.fabricmc.net/")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val shadowInclude: Configuration by configurations.creating
@ -61,6 +64,7 @@ dependencies {
mappings ("net.fabricmc:yarn:1.15.2+build.17:v2")
modImplementation ("net.fabricmc:fabric-loader:0.9.2+build.206")
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.19.0+build.325-1.15")
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")

View File

@ -20,7 +20,7 @@ releaseProperties.load(file("../../release.properties").inputStream())
group = "de.bluecolored.bluemap.fabric"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
@ -39,6 +39,9 @@ repositories {
maven {
setUrl("https://maven.fabricmc.net/")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val shadowInclude: Configuration by configurations.creating
@ -61,6 +64,7 @@ dependencies {
mappings ("net.fabricmc:yarn:1.16.1+build.21:v2")
modImplementation ("net.fabricmc:fabric-loader:0.9.2+build.206")
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.16.2+build.385-1.16.1")
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")

View File

@ -20,7 +20,7 @@ releaseProperties.load(file("../../release.properties").inputStream())
group = "de.bluecolored.bluemap.fabric"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)
@ -39,6 +39,9 @@ repositories {
maven {
setUrl("https://maven.fabricmc.net/")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val shadowInclude: Configuration by configurations.creating
@ -61,6 +64,7 @@ dependencies {
mappings ("net.fabricmc:yarn:1.16.3+build.1:v2")
modImplementation ("net.fabricmc:fabric-loader:0.9.3+build.207")
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.20.2+build.402-1.16")
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")

View File

@ -39,6 +39,9 @@ repositories {
maven {
setUrl("https://maven.fabricmc.net/")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val shadowInclude: Configuration by configurations.creating
@ -61,6 +64,7 @@ dependencies {
mappings ("net.fabricmc:yarn:1.17+build.1:v2")
modImplementation ("net.fabricmc:fabric-loader:0.11.3")
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.34.9+1.17")
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")

View File

@ -39,6 +39,9 @@ repositories {
maven {
setUrl("https://maven.fabricmc.net/")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val shadowInclude: Configuration by configurations.creating
@ -61,6 +64,7 @@ dependencies {
mappings ("net.fabricmc:yarn:1.18-pre5+build.4:v2")
modImplementation ("net.fabricmc:fabric-loader:0.11.3")
modImplementation ("net.fabricmc.fabric-api:fabric-api:0.42.2+1.18")
modImplementation("me.lucko:fabric-permissions-api:0.1-SNAPSHOT")
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")

View File

@ -18,7 +18,7 @@ releaseProperties.load(file("../../release.properties").inputStream())
group = "de.bluecolored.bluemap.bukkit"
version = releaseProperties["version"].toString()
val javaTarget = 8
val javaTarget = 11
java {
sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget)