limit jaxrs latest dependencies to exclude beta version 6 (#4795)

This commit is contained in:
Nikita Salnikov-Tarnovski 2021-12-05 13:38:05 +02:00 committed by GitHub
parent 3f3180841e
commit 3e95762de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -43,6 +43,7 @@ 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.+") {
exclude("org.jboss.resteasy", "resteasy-client")

View File

@ -41,7 +41,11 @@ dependencies {
testLibrary("org.jboss.resteasy:resteasy-servlet-initializer:3.1.0.Final")
// artifact name changed from 'resteasy-jaxrs' to 'resteasy-core' starting from version 4.0.0
latestDepTestLibrary("org.jboss.resteasy:resteasy-core:+")
latestDepTestLibrary("org.jboss.resteasy:resteasy-core:5.+")
latestDepTestLibrary("org.jboss.resteasy:resteasy-servlet-initializer:5.+")
latestDepTestLibrary("org.jboss.resteasy:resteasy-undertow:5.+") {
exclude("org.jboss.resteasy", "resteasy-client")
}
}
tasks {