Fix resteasy-3.0 latest test dep versions (#4800)
This commit is contained in:
parent
7c387853a0
commit
030d2e06d9
|
@ -221,7 +221,7 @@ abstract class JaxRsHttpServerTest<S> extends HttpServerTest<S> implements Agent
|
|||
false
|
||||
}
|
||||
|
||||
private static boolean shouldTestCompletableStageAsync() {
|
||||
boolean shouldTestCompletableStageAsync() {
|
||||
Boolean.getBoolean("testLatestDeps")
|
||||
}
|
||||
|
||||
|
|
|
@ -43,9 +43,9 @@ dependencies {
|
|||
testLibrary("io.undertow:undertow-servlet:1.4.28.Final")
|
||||
testLibrary("org.jboss.resteasy:resteasy-servlet-initializer:3.0.4.Final")
|
||||
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-servlet-initializer:5.+")
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-jaxrs:3.+")
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-undertow:3.+") {
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-servlet-initializer:3.0.+")
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-jaxrs:3.0.+")
|
||||
latestDepTestLibrary("org.jboss.resteasy:resteasy-undertow:3.0.+") {
|
||||
exclude("org.jboss.resteasy", "resteasy-client")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,4 +27,9 @@ class ResteasyHttpServerTest extends JaxRsHttpServerTest<UndertowJaxrsServer> {
|
|||
void stopServer(UndertowJaxrsServer server) {
|
||||
server.stop()
|
||||
}
|
||||
|
||||
// resteasy 3.0.x does not support JAX-RS 2.1
|
||||
boolean shouldTestCompletableStageAsync() {
|
||||
false
|
||||
}
|
||||
}
|
|
@ -5,4 +5,8 @@
|
|||
|
||||
class ResteasyJettyHttpServerTest extends JaxRsJettyHttpServerTest {
|
||||
|
||||
// resteasy 3.0.x does not support JAX-RS 2.1
|
||||
boolean shouldTestCompletableStageAsync() {
|
||||
false
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue