Fix jaxws metro tests on jdk8 (#5809)

This commit is contained in:
Lauri Tulmin 2022-04-12 20:26:23 +03:00 committed by GitHub
parent 8d25e97116
commit 92f3658aa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,9 @@ dependencies {
bootstrap(project(":instrumentation:servlet:servlet-common:bootstrap"))
library("com.sun.xml.ws:jaxws-rt:2.2.0.1")
// early versions of streambuffer depend on latest release of org.jvnet.staxex:stax-ex
// which doesn't work with java 8
library("com.sun.xml.stream.buffer:streambuffer:1.4")
compileOnly("javax.servlet:javax.servlet-api:3.0.1")
@ -30,6 +33,7 @@ dependencies {
testInstrumentation(project(":instrumentation:jetty:jetty-8.0:javaagent"))
latestDepTestLibrary("com.sun.xml.ws:jaxws-rt:2.+")
latestDepTestLibrary("com.sun.xml.stream.buffer:streambuffer:1.+")
}
tasks.withType<Test>().configureEach {