Skip to content

Commit

Permalink
Replace log4j with reload4j (Drop in replacement)
Browse files Browse the repository at this point in the history
Issue DSpace#5
  • Loading branch information
misilot committed Oct 10, 2024
1 parent eae9f3b commit 1288ddd
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
<version>2.6</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>1.2.25</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down Expand Up @@ -101,6 +101,21 @@
<goal>shade</goal>
</goals>
</execution>
<execution>
<id>enforce-banned-dependencies</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>log4j:log4j</exclude>
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

0 comments on commit 1288ddd

Please sign in to comment.