Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Logging API changed from Commons Logging to SLF4J, so you need to update your POM in order to use it:
e.g:
*if you are using commons-logging: <dependency>

Code Block

<dependency>
      <groupId>org.slf4j</groupId>

...


      <artifactId>slf4j-jcl</artifactId>

...


     <version>1.1.0</version>

...


</dependency>

*if you are using log4j <dependency>

Code Block

<dependency>
            <groupId>org.slf4j</groupId>

...


            <artifactId>slf4j-log4j12</artifactId>

...


            <version>1.1.0</version>

...


</dependency>