Skip to content

Commit e41d218

Browse files
committed
#16: Exclude artifact org.slf4j/slf4j-simple/1.7.25 from mojo-executor, because that leads to interferences with Spring Boot´s logback logging (see https://stackoverflow.com/questions/30792268/loggerfactory-is-not-a-logback-loggercontext-but-logback-is-on-the-classpath) and the warnings with every run of your cxf-spring-boot-starter dependend application. This is now fixed.
1 parent 70bbefc commit e41d218

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@
7575
<groupId>org.twdata.maven</groupId>
7676
<artifactId>mojo-executor</artifactId>
7777
<version>2.3.0</version>
78+
<exclusions>
79+
<exclusion>
80+
<groupId>org.slf4j</groupId>
81+
<artifactId>slf4j-simple</artifactId>
82+
</exclusion>
83+
</exclusions>
7884
</dependency>
7985

8086
<dependency>

0 commit comments

Comments
 (0)