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' testImplementation project(':instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent') testImplementation project(':instrumentation:servlet:servlet-3.0: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' 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.+' }