Fix/depedency mess (#249)

This commit is contained in:
Mariusz Smykuła
2016-04-28 10:09:58 +02:00
committed by Marcin Grzejszczak
parent 10284c4220
commit 4e421b9935
9 changed files with 17 additions and 22 deletions

View File

@@ -40,7 +40,6 @@ dependencies {
compile "org.springframework:spring-web:$springVersion"
compile "org.springframework:spring-context-support:$springVersion"
compile "org.codehaus.groovy:groovy-all:2.4.5"
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
compile 'com.jayway.jsonpath:json-path-assert:2.2.0'
testCompile "com.github.tomakehurst:wiremock:2.0.10-beta"

View File

@@ -11,6 +11,6 @@ repositories {
dependencies {
compile project(':accurest-messaging-root:accurest-messaging-core')
compile 'org.apache.camel:camel-spring:[2.9.0,)'
compile 'org.slf4j:slf4j-api:[1.6.0,)'
compile 'org.apache.camel:camel-spring:2.9.0'
compile 'org.slf4j:slf4j-api:1.6.0'
}

View File

@@ -3,6 +3,6 @@ repositories {
}
dependencies {
compile 'com.fasterxml.jackson.core:jackson-databind:[2.4.4,)'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.0'
compile 'javax.inject:javax.inject:1'
}

View File

@@ -11,6 +11,6 @@ repositories {
dependencies {
compile project(':accurest-messaging-root:accurest-messaging-core')
compile 'org.springframework:spring-messaging:[4.0.0.RELEASE,)'
compile 'org.slf4j:slf4j-api:[1.6.0,)'
compile 'org.springframework:spring-messaging:4.2.5.RELEASE'
compile 'org.slf4j:slf4j-api:1.6.0'
}

View File

@@ -11,7 +11,7 @@ repositories {
dependencies {
compile project(':accurest-messaging-root:accurest-messaging-core')
compile 'org.springframework.cloud:spring-cloud-stream:[1.0.0.RC2,)'
compile 'org.springframework.cloud:spring-cloud-stream:1.0.0.RC2'
// for MessageCollector
compile 'org.springframework.cloud:spring-cloud-stream-test-support:[1.0.0.RC2,)'
compile 'org.springframework.cloud:spring-cloud-stream-test-support:1.0.0.RC2'
}

View File

@@ -88,17 +88,12 @@ subprojects {
project(':accurest-core') {
dependencies {
compile 'org.slf4j:slf4j-api:[1.6.0,)'
compile 'org.codehaus.plexus:plexus-utils:[3.0.0,)'
compile 'commons-io:commons-io:[2.0,)'
compile 'org.apache.commons:commons-lang3:[3.3,)'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.5'
compile 'asm:asm:3.3.1'
compile 'org.slf4j:slf4j-api:1.6.0'
compile 'commons-io:commons-io:2.0'
compile 'org.apache.commons:commons-lang3:3.3'
compile "com.github.tomakehurst:wiremock:$wiremockVersion"
compile "com.toomuchcoding.jsonassert:jsonassert:$jsonassertVersion"
compile 'org.assertj:assertj-core:2.3.0'
compile localGroovy()
compile 'org.codehaus.groovy:groovy-all:2.4.4'
testCompile 'cglib:cglib-nodep:2.2'
testCompile 'org.objenesis:objenesis:2.1'
testCompile project(':accurest-testing-utils')
@@ -117,8 +112,8 @@ project(':accurest-testing-utils') {
project(':accurest-converters') {
dependencies {
compile project(':accurest-core')
compile 'org.apache.commons:commons-lang3:[3.0,)'
compile 'commons-io:commons-io:[2.0,)'
compile 'org.apache.commons:commons-lang3:3.0'
compile 'commons-io:commons-io:2.0'
compile 'dk.brics.automaton:automaton:1.11-8' // needed for Xeger
testCompile "com.github.tomakehurst:wiremock:$wiremockVersion"
testCompile 'org.hamcrest:hamcrest-all:1.3'

View File

@@ -12,7 +12,8 @@ repositories {
dependencies {
compile project(':stub-runner-root:stub-runner-spring')
compile project(':accurest-messaging-root:accurest-messaging-integration')
compile 'org.springframework.integration:spring-integration-java-dsl:[1.1.2.RELEASE,)'
compile 'org.springframework.integration:spring-integration-java-dsl:1.1.2.RELEASE'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.0'
testCompile "org.springframework.boot:spring-boot-starter-integration:${springBootVersion}"
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"

View File

@@ -13,7 +13,7 @@ dependencies {
compile project(':stub-runner-root:stub-runner-spring')
compile project(':stub-runner-root:stub-runner-messaging-root:stub-runner-messaging-integration')
compile project(':accurest-messaging-root:accurest-messaging-stream')
compile 'org.springframework.integration:spring-integration-java-dsl:[1.1.2.RELEASE,)'
compile 'org.springframework.integration:spring-integration-java-dsl:1.1.2.RELEASE'
testCompile 'org.springframework.cloud:spring-cloud-stream-test-support:1.0.0.RC2'
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"

View File

@@ -4,7 +4,7 @@ dependencies {
compile project(':stub-runner-root:stub-runner')
compile localGroovy()
compile 'org.springframework:spring-context:[3.0.0.RELEASE,)'
compile 'org.springframework:spring-context:3.0.0.RELEASE'
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude(group: 'org.codehaus.groovy')