Set Java compatibility level to 16 (#3)

* Set Java compatibility level to 16

* Bump version to 3.1.1
master
TheEpicBlock 2021-11-20 00:20:39 +01:00 committed by GitHub
parent 2829128286
commit 80f0973edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -6,7 +6,7 @@ plugins {
}
group = "org.quiltmc"
version = "3.1.0"
version = "3.1.1"
repositories {
mavenCentral()
@ -37,6 +37,11 @@ gradlePlugin {
}
}
java {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
}
publishing {
repositories {
mavenLocal()
@ -51,4 +56,4 @@ publishing {
}
}
}
}
}