fixing springloaded build to work as non java 1.8 minimum for now until asm fixes are done

This commit is contained in:
davydotcom
2021-03-31 21:10:10 -04:00
parent 07f3ccfbc2
commit 659fa81093
2 changed files with 13 additions and 13 deletions

View File

@@ -17,8 +17,8 @@ subprojects {
apply plugin: 'eclipse'
apply from: "$rootDir/gradle/publish-maven.gradle"
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
configure(subprojects.findAll { it.name.startsWith('testdata')}) {

View File

@@ -3,8 +3,8 @@ apply plugin: 'maven'
group = "org.springframework"
jar.baseName = 'springloaded'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 1.6
targetCompatibility = 1.6
task writeNewPom {
doLast {
@@ -47,16 +47,16 @@ dependencies {
compile 'org.ow2.asm:asm:5.2'
compile 'org.ow2.asm:asm-tree:5.2'
testCompile 'junit:junit:4.11'
testImplementation 'junit:junit:4.11'
testCompileOnly files("../testdata-groovy/groovy-all-1.8.6.jar")
testCompileOnly project(':testdata')
testCompileOnly project(':testdata-aspectj')
testCompileOnly project(':testdata-groovy')
testCompileOnly project(':testdata-java8')
testCompileOnly project(':testdata-plugin')
testCompileOnly project(':testdata-subloader')
testCompileOnly project(':testdata-superloader')
testImplementation files("../testdata-groovy/groovy-all-1.8.6.jar")
testImplementation(project(':testdata'))
testImplementation(project(':testdata-aspectj'))
testImplementation(project(':testdata-groovy'))
// testImplementation(project(':testdata-java8'))
testImplementation(project(':testdata-plugin'))
testImplementation(project(':testdata-subloader'))
testImplementation(project(':testdata-superloader'))
}
sourceSets {