Exclude JUnit from json-simple

See gh-13438
This commit is contained in:
Vivien Tintillier 2018-05-25 17:11:22 +02:00 committed by Stephane Nicoll
parent 625f428aad
commit e9aa6dd29f

View File

@ -648,6 +648,13 @@
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<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>
<groupId>com.h2database</groupId>