Exclude JUnit from json-simple

See gh-13438
pull/13480/head
Vivien Tintillier 7 years ago committed by Stephane Nicoll
parent 625f428aad
commit e9aa6dd29f

@ -648,6 +648,13 @@
<groupId>com.googlecode.json-simple</groupId> <groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId> <artifactId>json-simple</artifactId>
<version>${simple-json.version}</version> <version>${simple-json.version}</version>
<exclusions>
<!-- Remove compile time dependency on junit, see https://github.com/fangyidong/json-simple/issues/91 -->
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>

Loading…
Cancel
Save