maven assembly plugin: blacklist slf4j

This commit is contained in:
Bixilon 2020-09-08 14:46:03 +02:00
parent 4e08fe3665
commit d2b509197b
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

11
pom.xml
View File

@ -25,6 +25,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>14</source>
<target>14</target>
@ -102,6 +103,16 @@
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<type>maven-plugin</type>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>