Skip to content

Commit e921d16

Browse files
authored
Upgraded asm to v6.2 (#687)
1 parent 285c961 commit e921d16

2 files changed

Lines changed: 18 additions & 3 deletions

File tree

tests/dozer-osgi-tests/pom.xml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,23 @@
156156
</exclusion>
157157
</exclusions>
158158
</dependency>
159+
<!-- ASM required by SPIFLY for Java >=9 -->
159160
<dependency>
160161
<groupId>org.ow2.asm</groupId>
161-
<artifactId>asm-all</artifactId>
162-
<version>6.0_BETA</version>
162+
<artifactId>asm</artifactId>
163+
<version>6.2</version>
164+
<scope>test</scope>
165+
</dependency>
166+
<dependency>
167+
<groupId>org.ow2.asm</groupId>
168+
<artifactId>asm-commons</artifactId>
169+
<version>6.2</version>
170+
<scope>test</scope>
171+
</dependency>
172+
<dependency>
173+
<groupId>org.ow2.asm</groupId>
174+
<artifactId>asm-tree</artifactId>
175+
<version>6.2</version>
163176
<scope>test</scope>
164177
</dependency>
165178

tests/dozer-osgi-tests/src/test/java/com/github/dozermapper/osgitests/Proto3KarafContainerTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ public Option[] config() {
5353
// ServiceLoader
5454
localBundle("org.apache.aries.spifly.dynamic.bundle.link"),
5555
localBundle("org.apache.aries.util.link"),
56-
localBundle("org.objectweb.asm.all.link"),
56+
localBundle("org.objectweb.asm.link"),
57+
localBundle("org.objectweb.asm.commons.link"),
58+
localBundle("org.objectweb.asm.tree.link"),
5759

5860
// Bundles
5961
BundleOptions.optionalBundles(),

0 commit comments

Comments
 (0)