mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-03 13:30:34 +07:00
Changed Java source/target compatibility to Java 8
Changed Java source/target compatibility to Java 8 Removed special :core:compileTestJava Java 8 support to use default above
This commit is contained in:
parent
dbb0866985
commit
c8f14134ac
@ -41,7 +41,8 @@ allprojects {
|
|||||||
|
|
||||||
configure(subprojects - project(':android')) {
|
configure(subprojects - project(':android')) {
|
||||||
apply plugin: 'java-library'
|
apply plugin: 'java-library'
|
||||||
sourceCompatibility = 7.0
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
compileJava {
|
compileJava {
|
||||||
options.incremental = true
|
options.incremental = true
|
||||||
}
|
}
|
||||||
|
@ -102,11 +102,6 @@ dependencies {
|
|||||||
//api "net.mostlyoriginal.artemis-odb:contrib-plugin-singleton:$artemisContribVersion"
|
//api "net.mostlyoriginal.artemis-odb:contrib-plugin-singleton:$artemisContribVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileTestJava {
|
|
||||||
sourceCompatibility = "1.8"
|
|
||||||
targetCompatibility = "1.8"
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation platform('org.junit:junit-bom:5.7.1')
|
testImplementation platform('org.junit:junit-bom:5.7.1')
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||||||
|
Loading…
Reference in New Issue
Block a user