Enforcing Java 11.

This commit is contained in:
Rob Greene 2022-06-05 16:46:04 -05:00
parent b39d3a7b56
commit b21a7bb341
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,9 @@ apply plugin: 'java-library'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = '11'
targetCompatibility = '11'
dependencies {
testImplementation 'junit:junit:4.12'
}

View File

@ -9,6 +9,9 @@ repositories {
apply plugin: 'application'
sourceCompatibility = '11'
targetCompatibility = '11'
mainClassName = "io.github.applecommander.applesingle.tools.asu.Main"
bootJar {