Skip to content

Commit

Permalink
use slf4j-simple, don't propagate it
Browse files Browse the repository at this point in the history
making slf4j-simple <optional>, so it is not passed to maven projects
adding slf4j-simple content to uberjar so it is used for command line
  • Loading branch information
vanrenter committed Mar 20, 2024
1 parent ec193e2 commit 0df29f7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@
<version>2.2.14</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
Expand Down Expand Up @@ -277,6 +278,11 @@
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
<artifact>org.slf4j:slf4j-simple</artifact>
<includes>
<include>org/slf4j/**</include>
<include>META-INF/services/**</include>
</includes>
</filter>
</filters>
</configuration>
Expand Down

0 comments on commit 0df29f7

Please sign in to comment.