Skip to content

Commit

Permalink
Fix latestDepTest/muzzle after a broken undertow release (#8678)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Rzeszutek authored Jun 8, 2023
1 parent cd64f98 commit 1f64215
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ dependencies {
testLibrary("org.jboss.resteasy:resteasy-undertow:3.0.4.Final") {
exclude("org.jboss.resteasy", "resteasy-client")
}
testLibrary("io.undertow:undertow-servlet:1.4.28.Final")
testImplementation("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:3.0.+") // see jaxrs-3.0-resteasy-3.1 module
latestDepTestLibrary("org.jboss.resteasy:resteasy-jaxrs:3.0.+") // see jaxrs-3.0-resteasy-3.1 module
latestDepTestLibrary("org.jboss.resteasy:resteasy-undertow:3.0.+") { // see jaxrs-3.0-resteasy-3.1 module
exclude("org.jboss.resteasy", "resteasy-client")
}
latestDepTestLibrary("io.undertow:undertow-servlet:2.2.+") // 2.3 switches to Servlet 5 / Jakarta namespace
latestDepTestLibrary("io.undertow:undertow-servlet:2.2.24.Final") // 2.3 switches to Servlet 5 / Jakarta namespace
}

tasks {
Expand Down
2 changes: 2 additions & 0 deletions instrumentation/undertow-1.4/javaagent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ muzzle {
module.set("undertow-core")
versions.set("[1.4.0.Final,)")
assertInverse.set(true)
// release missing in maven central
skip("2.2.25.Final")
}
}

Expand Down

0 comments on commit 1f64215

Please sign in to comment.