Le 19/02/15 14:38, Alessandro Benedetti a écrit : > Hi developers, > Playing with maven dependencies and a project I had a lot of troubles > because using this maven dep : > > <dependency> > <groupId>org.apache.directory.server</groupId> > <artifactId>apacheds-all</artifactId> > <version>1.5.5</version> > <type>jar</type> > <scope>compile</scope> > </dependency> > > It was implicitly overwriting my class loading for Slf4j classes.
Have you tried to use <scope>provided</scope> instead ? Using the scope compile, which is the default btw, will pull all the transitive dependencies from apacheds-all.