Fixing deps (#251)

This commit is contained in:
Marcin Grzejszczak
2016-04-28 11:44:24 +02:00
parent 4e421b9935
commit 0a7f484655
13 changed files with 44 additions and 22 deletions

View File

@@ -12,11 +12,11 @@ repositories {
dependencies {
compile project(':accurest-core')
compile "org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}"
compile 'org.apache.camel:camel-spring-boot-starter:2.17.0'
compile 'org.apache.camel:camel-jms:2.17.0'
compile "org.apache.camel:camel-spring-boot-starter:${camelVersion}"
compile "org.apache.camel:camel-jms:${camelVersion}"
compile 'org.apache.activemq:activemq-camel:5.12.1'
compile 'org.apache.activemq:activemq-pool:5.12.1'
compile 'org.apache.camel:camel-jackson:2.17.0'
compile "org.apache.camel:camel-jackson:${camelVersion}"
testCompile project(':accurest-messaging-root:accurest-messaging-camel')
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"

View File

@@ -12,7 +12,7 @@ repositories {
dependencies {
compile project(':accurest-core')
compile "org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}"
compile 'org.springframework:spring-jms:4.2.3.RELEASE'
compile "org.springframework:spring-jms:${springVersion}"
compile 'org.apache.activemq:activemq-broker:5.12.1'
compile 'org.apache.activemq:activemq-pool:5.12.1'

View File

@@ -12,10 +12,10 @@ repositories {
dependencies {
compile project(':accurest-core')
compile "org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}"
compile 'org.springframework.cloud:spring-cloud-stream-binder-rabbit:1.0.0.RC2'
compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit:${springStreamVersion}"
testCompile project(':accurest-messaging-root:accurest-messaging-stream')
testCompile 'org.springframework.cloud:spring-cloud-stream-test-support:1.0.0.RC2'
testCompile "org.springframework.cloud:spring-cloud-stream-test-support:${springStreamVersion}"
testCompile('org.spockframework:spock-spring:1.0-groovy-2.4') {
exclude(group: 'org.codehaus.groovy')
}