Skip to content

Commit

Permalink
Exclude net.minidev:asm to fix Testcase failure
Browse files Browse the repository at this point in the history
Testcases are failing with following error, as asm package is getting duplicated with two bundles:

    testAutoprimitiveCustomRegexProperty
             Do XML to JSON transformation with overridden autoprimitive custom regext synapse property
    java.lang.IncompatibleClassChangeError: class org.jacoco.core.internal.flow.ClassProbesVisitor has interface org.objectweb.asm.ClassVisitor as super class
  • Loading branch information
chanikag committed Oct 24, 2023
1 parent a3c46cb commit 4e1b668
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@
<dependency>
<groupId>org.wso2.orbit.com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<exclusions>
<exclusion>
<groupId>net.minidev</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wso2.eventing</groupId>
Expand Down

0 comments on commit 4e1b668

Please sign in to comment.