INT-3629: Upgrade to Gradle 2.3

JIRA: https://jira.spring.io/browse/INT-3629

Fix Sonar Build
`build.gradle` polishing
This commit is contained in:
Gunnar Hillert
2015-02-16 16:26:13 +02:00
committed by Artem Bilan
parent 97c6726fdd
commit 8c81cffd27
4 changed files with 8 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ apply plugin: 'idea'
buildscript {
repositories {
maven { url 'http://repo.spring.io/plugins-release' }
maven { url 'https://repo.spring.io/plugins-release' }
}
dependencies {
classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE'
@@ -29,8 +29,8 @@ allprojects {
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
maven { url 'http://repo.spring.io/libs-snapshot' }
}
maven { url 'http://repo.spring.io/libs-milestone' }
maven { url 'http://repo.spring.io/plugins-release' }
maven { url 'https://repo.spring.io/libs-milestone' }
maven { url 'https://repo.spring.io/plugins-release' }
mavenCentral()
}
@@ -168,7 +168,7 @@ subprojects { subproject ->
if (!(subproject.name ==~ /.*-(core|test)/)) {
testCompile project(":spring-integration-test")
}
jacoco group: "org.jacoco", name: "org.jacoco.agent", version: "0.5.6.201201232323", classifier: "runtime"
jacoco group: "org.jacoco", name: "org.jacoco.agent", version: "0.7.2.201409121644", classifier: "runtime"
}
// enable all compiler warnings; individual projects may customize further
@@ -388,9 +388,6 @@ project('spring-integration-jms') {
compile "org.springframework:spring-jms:$springVersion"
compile ("javax.jms:jms-api:$jmsApiVersion", provided)
testCompile("org.apache.activemq:activemq-broker:$activeMqVersion")
testCompile("org.apache.activemq:activemq-kahadb-store:$activeMqVersion") {
exclude group: "org.springframework"
}
testCompile "org.springframework:spring-oxm:$springVersion"
}
}
@@ -857,6 +854,6 @@ task dist(dependsOn: assemble) {
task wrapper(type: Wrapper) {
description = 'Generates gradlew[.bat] scripts'
gradleVersion = '1.12'
gradleVersion = '2.3'
distributionUrl = "http://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#Wed May 21 07:12:56 EEST 2014
#Mon Feb 16 15:40:27 EET 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-2.3-all.zip

View File

@@ -66,6 +66,7 @@ public class SOLingerTests {
public void configOk() {}
@Test
@Ignore
public void finReceivedNet() {
finReceived(inCFNet);
}