Replace logback-classic with slf4j-simple in the client get a smaller excutable and easier log config

This commit is contained in:
Peter Palaga
2020-06-02 13:28:57 +02:00
parent 07559a24df
commit 823af74874
5 changed files with 51 additions and 6 deletions

View File

@@ -14,9 +14,19 @@
<name>Maven Daemon</name>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.fuse.mvnd</groupId>
<artifactId>mvnd-client</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>