Try and explicitly specify Java 8 in the modules.

This commit is contained in:
Andrew Steinborn
2020-11-06 18:52:00 -05:00
parent fb888c3b8a
commit 89e1a07448
4 changed files with 15 additions and 5 deletions

View File

@@ -8,6 +8,11 @@ plugins {
apply from: '../gradle/checkstyle.gradle'
apply plugin: 'com.github.johnrengelman.shadow'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
jar {
manifest {
def buildNumber = System.getenv("BUILD_NUMBER") ?: "unknown"