Skip to content

Commit

Permalink
pom.xml: Switch log4j to a compile scope dependency
Browse files Browse the repository at this point in the history
Also removes explicit `<scope>compile</scope>` as that is the default Maven scope.
  • Loading branch information
seanbright committed Oct 7, 2024
1 parent 85b73d8 commit 8717e28
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,11 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
Expand All @@ -135,6 +127,12 @@
<version>4.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.16</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 8717e28

Please sign in to comment.