Skip to content

Commit e88d558

Browse files
author
Mikołaj Koziarkiewicz
committed
json-simple pulls junit as a compile dep, which pulls hamcrest, which
causes Android Maven builds to fail. Added exclusion for fix.
1 parent b3e3a36 commit e88d558

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@
4747
<groupId>com.googlecode.json-simple</groupId>
4848
<artifactId>json-simple</artifactId>
4949
<version>1.1.1</version>
50+
<exclusions>
51+
<exclusion>
52+
<artifactId>junit</artifactId>
53+
<groupId>junit</groupId>
54+
</exclusion>
55+
</exclusions>
5056
</dependency>
5157
<dependency>
5258
<groupId>org.javassist</groupId>

0 commit comments

Comments
 (0)