java - Avoid getting slf4j from maven -


maven uses slf4j, launched, initializes default implementation contained apache-maven-3.3.9\lib\slf4j-simple-1.7.5.jar , configuration file defined in apache-maven-3.3.9\conf\logging\simplelogger.properties.

after loads pom file , found jetty-maven-plugin launch webapp. in webapp want use different implementation slf4j, can't because slf4j initialized.

i understand maven tool build , not launch apps, can't modify log configuration of apache-maven each project pretty logs each of them.

is face issue , find way avoid that?

note:

  • run-forked instead run works in case can't no more debug eclipse prefer solution.

  • older version of maven works 3.0.3 because didn't used slf4j


Comments