Skip to content

Commit b501963

Browse files
authored
Fix verifier error (#406)
* Limiting the supported version range for vertx-core due to new version released on May 14th, 2025.
1 parent e961316 commit b501963

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

instrumentation-security/cxf-jaxrs/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jar {
1515

1616
verifyInstrumentation {
1717
passesOnly 'org.apache.cxf:cxf-rt-frontend-jaxrs:[2.1.3,)'
18+
exclude('org.apache.cxf:cxf-rt-frontend-jaxrs:3.6.7')
1819
exclude('org.apache.cxf:cxf-rt-frontend-jaxrs:2.1.2')
1920
}
2021

instrumentation-security/vertx-core-4.0.0/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jar {
1414
}
1515

1616
verifyInstrumentation {
17-
passesOnly ('io.vertx:vertx-core:[4.0.0,)') {
17+
passesOnly ('io.vertx:vertx-core:[4.0.0,5.0.0)') {
1818
implementation('io.vertx:vertx-web:4.0.0')
1919
}
2020
excludeRegex '.*CR[0-9]*'

0 commit comments

Comments
 (0)