Fix jaxrs jersey latest dep version (#2843)

* Fix jaxrs jersey latest dep version

* Clean up dependencies
This commit is contained in:
Trask Stalnaker 2021-04-22 14:06:41 -07:00 committed by GitHub
parent 2f6ae9f37b
commit eadb07fd48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -29,12 +29,17 @@ dependencies {
testInstrumentation project(':instrumentation:servlet:servlet-javax-common:javaagent')
testImplementation project(':instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-testing')
testImplementation group: 'org.eclipse.jetty', name: 'jetty-webapp', version: '8.0.0.v20110901'
// First version with DropwizardTestSupport:
testLibrary 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'
latestDepTestLibrary group: 'org.glassfish.jersey.core', name: 'jersey-server', version: '2.+'
latestDepTestLibrary group: 'org.glassfish.jersey.containers', name: 'jersey-container-servlet', version: '2.+'
// this is needed because dropwizard-testing version 0.8.0 (above) pulls it in transitively,
// but the latest version of dropwizard-testing does not
latestDepTestLibrary group: 'org.eclipse.jetty', name: 'jetty-webapp', version: '9.+'
}
test {