Skip to content

Commit

Permalink
move slf4j implementation to test scope
Browse files Browse the repository at this point in the history
Signed-off-by: Gilian Rehm <g_rehm@ich-habe-fertig.com>
  • Loading branch information
Gr33ndev committed Jul 10, 2023
1 parent 5b7d267 commit dddc42b
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,23 @@
<sonar.projectKey>java-spdx-library</sonar.projectKey>
</properties>
<profiles>
<profile>
<id>test</id>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.20.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</profile>
<profile>
<id>doclint-java8-disable</id>
<activation>
Expand Down Expand Up @@ -98,17 +115,6 @@
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.20.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down

0 comments on commit dddc42b

Please sign in to comment.