excluded transitive older junit dependencies, they can compromise the unit test executions

pull/77/head
Claudio Atzori 3 years ago
parent 112da6d76a
commit 7fe2433137

@ -59,6 +59,10 @@
<artifactId>solr-test-framework</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>com.carrotsearch</groupId>
<artifactId>*</artifactId>
@ -140,6 +144,12 @@
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>

Loading…
Cancel
Save