Switch back to jdk8

This commit is contained in:
zontreck 2024-09-06 23:35:21 -07:00
parent 3bf69703fa
commit 786311d614
2 changed files with 2 additions and 5 deletions

5
Jenkinsfile vendored
View file

@ -16,8 +16,7 @@ pipeline {
}
tools {
jdk "jdk11"
gradle "gradle7"
jdk "jdk8"
}
steps {
@ -32,7 +31,7 @@ pipeline {
java -version
chmod +x gradlew
gradle -Dorg.gradle.java.home="$JAVA_HOME" build publish
./gradlew -Dorg.gradle.java.home="$JAVA_HOME" build publish
'''
}

View file

@ -12,8 +12,6 @@ archivesBaseName = "LibAC"
def ENV = System.getenv()
java {
sourceCompatibility = JavaLanguageVersion.of(8)
toolchain.languageVersion = JavaLanguageVersion.of(8)
withSourcesJar()
withJavadocJar()