SGF-564 - Upgrade Gradle build to Java 8.

Upgrade AssertJ version to 3.5.2.

Upgrade Jackson version to 2.8.4.

Upgrade Spring Framework to 5.0.0.M3.

Upgrade Spring Data Build to 2.0.0.BUILD-SNAPSHOT.

Upgrade Spring Data Commons to 2.0.0.BUILD-SNAPSHOT.

Set Spring Data GemFire version to 2.0.0.BUILD-SNAPSHOT.
This commit is contained in:
John Blum
2016-11-10 23:14:47 -08:00
parent 7dbb31c988
commit d3041d05a4
3 changed files with 19 additions and 17 deletions

View File

@@ -13,10 +13,6 @@ buildscript {
}
}
configurations {
sharedResources
}
apply plugin: "java"
apply plugin: 'eclipse'
apply plugin: 'idea'
@@ -29,8 +25,12 @@ apply plugin: 'org.asciidoctor.gradle.asciidoctor'
description = 'Spring Data GemFire'
group = 'org.springframework.data'
sourceCompatibility = 1.6
targetCompatibility = 1.6
sourceCompatibility = 1.8
targetCompatibility = 1.8
configurations {
sharedResources
}
sourceSets {
main {
@@ -102,25 +102,24 @@ dependencies {
runtime("antlr:antlr:$antlrVersion")
optional "javax.enterprise:cdi-api:$cdiVersion"
compile "org.aspectj:aspectjweaver:$aspectjVersion"
compile "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
compile "org.aspectj:aspectjweaver:$aspectjVersion"
// Testing
testCompile("org.springframework:spring-test:$springVersion") {
exclude group: "commons-logging", module: "commons-logging"
}
testCompile "junit:junit:$junitVersion"
testCompile "javax.annotation:jsr250-api:1.0", optional
testCompile "org.apache.openwebbeans.test:cditest-owb:$openwebbeansVersion"
testCompile "org.assertj:assertj-core:$assertjVersion"
testCompile "org.hamcrest:hamcrest-core:$hamcrestVersion"
testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion"
testCompile "org.projectlombok:lombok:$lombokVersion"
testCompile "org.mockito:mockito-core:$mockitoVersion"
testCompile "junit:junit:$junitVersion"
testCompile "edu.umd.cs.mtc:multithreadedtc:$multiThreadedtcVersion"
testCompile "javax.annotation:jsr250-api:1.0", optional
testRuntime "javax.el:el-api:$cdiVersion"
testRuntime "javax.servlet:servlet-api:$servletApiVersion"
testRuntime "log4j:log4j:$log4jVersion"