34 lines
1.2 KiB
Groovy
34 lines
1.2 KiB
Groovy
apply plugin: 'version-scan'
|
|
|
|
versionScan {
|
|
group = "org.apache.kafka"
|
|
module = "kafka-streams"
|
|
versions = "[0.11.0.0,)"
|
|
verifyPresent = [
|
|
'org.apache.kafka.streams.state.internals.CacheFunction' : null,
|
|
'org.apache.kafka.streams.state.internals.InMemoryKeyValueStore': null,
|
|
]
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
compileOnly group: 'org.apache.kafka', name: 'kafka-streams', version: '0.11.0.0'
|
|
|
|
compile project(':dd-trace-ot')
|
|
compile project(':dd-java-agent:tooling')
|
|
|
|
compile deps.bytebuddy
|
|
compile deps.opentracing
|
|
|
|
testCompile project(':dd-java-agent:testing')
|
|
// Include kafka-clients instrumentation for tests.
|
|
testCompile project(':dd-java-agent:instrumentation:kafka-clients-0.11')
|
|
|
|
testCompile group: 'org.apache.kafka', name: 'kafka-clients', version: '0.11.0.0'
|
|
testCompile group: 'org.apache.kafka', name: 'kafka-streams', version: '0.11.0.0'
|
|
testCompile group: 'org.springframework.kafka', name: 'spring-kafka', version: '1.3.3.RELEASE'
|
|
testCompile group: 'org.springframework.kafka', name: 'spring-kafka-test', version: '1.3.3.RELEASE'
|
|
testCompile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.2.3'
|
|
}
|