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

This commit is contained in:
Claudio Atzori 2020-12-11 12:42:55 +01:00
parent 112da6d76a
commit 7fe2433137
1 changed files with 10 additions and 0 deletions

View File

@ -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>