Skip to content

Commit

Permalink
Fix log during unittest. Had to exclude log4j-impl from solr-core.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasegense committed Jan 5, 2024
1 parent f9ca772 commit 09eb015
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@
<version>3.3.6</version>
</dependency>



<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
Expand Down Expand Up @@ -122,15 +120,21 @@
<groupId>org.apache.solr</groupId>
<artifactId>solr-test-framework</artifactId>
<version>9.1.0</version>
<!-- <version>7.1.0</version> -->
<scope>test</scope>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.solr/solr-core -->
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-core</artifactId>
<version>9.1.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</exclusion>

</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-core -->
<dependency>
Expand Down

0 comments on commit 09eb015

Please sign in to comment.