Skip to content

Commit

Permalink
Fix sqlite in cmdline
Browse files Browse the repository at this point in the history
oauth2 and jedis also use slf4j-api and may have been affected.
  • Loading branch information
PseudoKnight committed Apr 9, 2024
1 parent fa2eeb5 commit eb3b3a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,16 @@
<artifactId>threetenbp</artifactId>
<version>1.6.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.36</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
Expand Down Expand Up @@ -588,6 +598,8 @@
<include>io.gsonfire:gson-fire:jar:*</include>
<include>com.squareup.okhttp:logging-interceptor:jar:*</include>
<include>com.microsoft.sqlserver:mssql-jdbc:jar:*</include>
<include>org.slf4j:slf4j-api:jar:*</include>
<include>org.slf4j:slf4j-simple:jar:*</include>
</includes>
</artifactSet>
<relocations>
Expand Down Expand Up @@ -715,6 +727,10 @@
<pattern>io.gsonfire</pattern>
<shadedPattern>com.laytonsmith.libs.io.gsonfire</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>com.laytonsmith.libs.org.slf4j</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
Expand Down Expand Up @@ -959,6 +975,18 @@
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.slf4j:slf4j-api:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.slf4j:slf4j-simple:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
Expand Down

0 comments on commit eb3b3a0

Please sign in to comment.