forked from D-Net/dnet-hadoop
excluded transitive older junit dependencies, they can compromise the unit test executions
This commit is contained in:
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…
Reference in New Issue