Skip to content

Release 0.7.1

Compare
Choose a tag to compare
@oshoukry oshoukry released this 09 Apr 00:16
· 397 commits to master since this release

Fixed

  1. A bug was introduced in 0.6.4 causing OpenPojo to incorrectly detect SLF4J loaded when it wasn't causing the ServiceRegistry to fail.
    The exception thrown was
Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
    at com.openpojo.log.impl.SLF4JLogger.<init>(SLF4JLogger.java:31)
    ... 47 more
Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

Note

Please don't forget to update your Maven groupId to be able to pull the latest version

  <dependency>
    <groupId>com.openpojo</groupId>
    <artifactId>openpojo</artifactId>
    <version>0.7.1</version>
  </dependency>