26 lines
883 B
Groovy
26 lines
883 B
Groovy
ext {
|
|
skipPublish = true
|
|
}
|
|
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
//apply plugin: 'org.unbroken-dome.test-sets'
|
|
//
|
|
//testSets {
|
|
// latestDepTest {
|
|
// dirName = 'test'
|
|
// }
|
|
//}
|
|
|
|
dependencies {
|
|
testImplementation project(':instrumentation:jaxrs:jaxrs-2.0')
|
|
testImplementation project(':instrumentation:servlet:servlet-3.0')
|
|
|
|
// First version with DropwizardTestSupport:
|
|
testImplementation group: 'io.dropwizard', name: 'dropwizard-testing', version: '0.8.0'
|
|
testImplementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.2.3'
|
|
testImplementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner', version: '2.9.10'
|
|
|
|
// Anything 1.0+ fails with a java.lang.NoClassDefFoundError: org/eclipse/jetty/server/RequestLog
|
|
// latestDepTestImplementation group: 'io.dropwizard', name: 'dropwizard-testing', version: '1.+'
|
|
}
|