michaelin007 2024-01-16 10:59:00 +00:00
parent 7a1158484a
commit 0b55315e8e
2 changed files with 5 additions and 2 deletions

View File

@ -10,8 +10,6 @@ allprojects {
subprojects { subprojects {
version = '1.0' version = '1.0'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
} }
apply plugin: 'eclipse' apply plugin: 'eclipse'

View File

@ -7,3 +7,8 @@ dependencies {
exclude module : 'groovy-all' exclude module : 'groovy-all'
} }
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}