re-adding the old junit:junit dep as solr-test-framework needs it

This commit is contained in:
Claudio Atzori 2020-12-14 15:07:31 +01:00
parent e8ef8c63d4
commit b6f08ce226
1 changed files with 7 additions and 4 deletions

View File

@ -54,15 +54,18 @@
<artifactId>spark-solr</artifactId>
</dependency>
<!-- the solr-test-framework requires the old junit:junit test framework -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-test-framework</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>com.carrotsearch</groupId>
<artifactId>*</artifactId>