Exludes asm libraries from jsonassert

fixes gh-1568
fixes gh-1561
This commit is contained in:
Marcin Grzejszczak
2020-12-01 13:33:30 +01:00
parent c5b12b91b5
commit de8333deed
5 changed files with 40 additions and 3 deletions

View File

@@ -64,8 +64,14 @@
<dependency>
<groupId>com.toomuchcoding.jsonassert</groupId>
<artifactId>jsonassert</artifactId>
<version>0.4.13</version>
<version>0.5.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>

View File

@@ -63,8 +63,14 @@
<dependency>
<groupId>com.toomuchcoding.jsonassert</groupId>
<artifactId>jsonassert</artifactId>
<version>0.4.13</version>
<version>0.5.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>