This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/revert-asm-version-changes in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-core.git
commit 5f0e2f958784474fc5459e8aaf23c4cb34ccd7f0 Author: Robert Munteanu <[email protected]> AuthorDate: Fri Mar 28 15:41:10 2025 +0100 test: use latest Sling testing pax-exam and no longer pin ASM versions --- src/it/annotations-it/pom.xml | 2 +- .../apache/sling/junit/annotations/AnnotationsTestSupport.java | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/it/annotations-it/pom.xml b/src/it/annotations-it/pom.xml index 2666fd9..e73a8ce 100644 --- a/src/it/annotations-it/pom.xml +++ b/src/it/annotations-it/pom.xml @@ -189,7 +189,7 @@ <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.paxexam</artifactId> - <version>4.0.0</version> + <version>4.1.1-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> diff --git a/src/it/annotations-it/src/test/java/org/apache/sling/junit/annotations/AnnotationsTestSupport.java b/src/it/annotations-it/src/test/java/org/apache/sling/junit/annotations/AnnotationsTestSupport.java index 0ff64d8..fb68fa5 100644 --- a/src/it/annotations-it/src/test/java/org/apache/sling/junit/annotations/AnnotationsTestSupport.java +++ b/src/it/annotations-it/src/test/java/org/apache/sling/junit/annotations/AnnotationsTestSupport.java @@ -83,12 +83,7 @@ public class AnnotationsTestSupport extends TestSupport { mavenBundle().groupId("ch.qos.logback").artifactId("logback-core").versionAsInProject(), mavenBundle().groupId("org.ops4j.pax.logging").artifactId("pax-logging-api").versionAsInProject(), mavenBundle().groupId("org.ops4j.pax.logging").artifactId("pax-logging-logback").versionAsInProject(), - mavenBundle().groupId("jakarta.json").artifactId("jakarta.json-api").version("2.1.1"), - mavenBundle().groupId("org.ow2.asm").artifactId("asm").version("9.7"), - mavenBundle().groupId("org.ow2.asm").artifactId("asm-analysis").version("9.7"), - mavenBundle().groupId("org.ow2.asm").artifactId("asm-commons").version("9.7"), - mavenBundle().groupId("org.ow2.asm").artifactId("asm-util").version("9.7"), - mavenBundle().groupId("org.ow2.asm").artifactId("asm-tree").version("9.7") + mavenBundle().groupId("jakarta.json").artifactId("jakarta.json-api").version("2.1.1") ); } @@ -105,4 +100,4 @@ public class AnnotationsTestSupport extends TestSupport { CLIENT.waitComponentRegistered(clazz, 10 * 1000, 500); } } -} \ No newline at end of file +}
