51 lines
2.3 KiB
Groovy
51 lines
2.3 KiB
Groovy
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.camel"
|
|
module = "camel-core"
|
|
versions = "[2.20.1,3)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library group: 'org.apache.camel', name: 'camel-core', version: '2.20.1'
|
|
|
|
testLibrary group: 'org.apache.camel', name: 'camel-spring-boot-starter', version: '2.20.1'
|
|
testLibrary group: 'org.apache.camel', name: 'camel-jetty-starter', version: '2.20.1'
|
|
testLibrary group: 'org.apache.camel', name: 'camel-http-starter', version: '2.20.1'
|
|
testLibrary group: 'org.apache.camel', name: 'camel-jaxb-starter', version: '2.20.1'
|
|
testLibrary group: 'org.apache.camel', name: 'camel-undertow', version: '2.20.1'
|
|
testLibrary group: 'org.apache.camel', name: 'camel-aws', version: '2.20.1'
|
|
|
|
testInstrumentation project(':instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent')
|
|
testInstrumentation project(':instrumentation:servlet:servlet-3.0:javaagent')
|
|
testInstrumentation project(':instrumentation:aws-sdk:aws-sdk-1.11:javaagent')
|
|
|
|
testImplementation group: 'org.spockframework', name: 'spock-spring', version: "$versions.spock"
|
|
|
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.5.17.RELEASE'
|
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: '1.5.17.RELEASE'
|
|
|
|
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
|
|
|
|
/**
|
|
testImplementation deps.testcontainers
|
|
testImplementation "org.testcontainers:localstack:1.15.0-rc2"**/
|
|
|
|
testLibrary group: 'org.elasticmq', name: 'elasticmq-rest-sqs_2.12', version: '1.0.0'
|
|
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-core', version: '2.+'
|
|
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-spring-boot-starter', version: '2.+'
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-jetty-starter', version: '2.+'
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-http-starter', version: '2.+'
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-jaxb-starter', version: '2.+'
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-undertow', version: '2.+'
|
|
latestDepTestLibrary group: 'org.apache.camel', name: 'camel-aws', version: '2.+'
|
|
}
|