INT-2689 - SI builds without warnings (Except Spring Integration HTTP)
* Ensure that no deprecation warnings occur * Spring Integration builds with all tests successfully for Spring 3.1.2.RELEASE and 3.0.7.RELEASE (Except Spring Integration HTTP) For reference see: https://jira.springsource.org/browse/INT-2689 INT-2694 - Fix Http Test Failures with Spring 3.0 As part of INT-2689, fix Http Test Failures in the Spring Integration Http Module when using Spring 3.0.7.RELEASE For reference see: https://jira.springsource.org/browse/INT-2694
This commit is contained in:
committed by
Oleg Zhurakousky
parent
19c53ed9e9
commit
57bc67b8fb
10
build.gradle
10
build.gradle
@@ -45,8 +45,9 @@ subprojects { subproject ->
|
||||
junitVersion = '4.8.2'
|
||||
log4jVersion = '1.2.12'
|
||||
mockitoVersion = '1.9.0'
|
||||
|
||||
// When changing Spring Versions - don't forget to update bundlor ranges
|
||||
springVersion = '3.1.2.RELEASE'
|
||||
springVersion = project.hasProperty('springVersion') ? getProperty('springVersion') : '3.1.2.RELEASE'
|
||||
springAmqpVersion = '1.1.1.RELEASE'
|
||||
springDataMongoVersion = '1.1.0.M1'
|
||||
springDataRedisVersion = '1.0.1.RELEASE'
|
||||
@@ -355,7 +356,7 @@ project('spring-integration-http') {
|
||||
dependencies {
|
||||
compile project(":spring-integration-core")
|
||||
compile "org.springframework:spring-webmvc:$springVersion"
|
||||
compile("javax.servlet:servlet-api:2.4", provided)
|
||||
compile("javax.servlet:javax.servlet-api:3.0.1", provided)
|
||||
compile("commons-httpclient:commons-httpclient:3.1") { dep ->
|
||||
optional dep
|
||||
exclude group: 'junit', module: 'junit'
|
||||
@@ -517,12 +518,15 @@ project('spring-integration-jpa') {
|
||||
testCompile "org.aspectj:aspectjrt:$aspectjVersion"
|
||||
testCompile "org.aspectj:aspectjweaver:$aspectjVersion"
|
||||
|
||||
testCompile "org.hibernate:hibernate-entitymanager:4.0.1.Final"
|
||||
testCompile "org.hibernate:hibernate-entitymanager:3.6.10.Final"
|
||||
testCompile "org.eclipse.persistence:org.eclipse.persistence.jpa:2.3.2"
|
||||
testCompile "org.apache.openjpa:openjpa:2.2.0"
|
||||
|
||||
javaAgentSpringInstrument "org.springframework:spring-instrument:$springVersion"
|
||||
javaAgentOpenJpa "org.apache.openjpa:openjpa:2.2.0"
|
||||
|
||||
//Suppress openjpa annotation processor warnings
|
||||
compileTestJava.options.compilerArgs = ["${xLintArg},-processing"]
|
||||
}
|
||||
|
||||
bundlor {
|
||||
|
||||
Reference in New Issue
Block a user