The compiled jars available at * https://mvnrepository.com/artifact/com.typesafe.scala-logging/scala-logging_3/3.9.4 are compiled with class file format for Java 8 but the bundle manifest tells OSGi that Java 9 is required: ``` % cat META-INF/MANIFEST.MF | grep Require-Capability Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=9))" ``` The consequence of this is that the jar does not work as a bundle with OSGi running on Java 8. For comparison, the manifest for `scala-parser-combinators` says: ``` % cat META-INF/MANIFEST.MF | grep Require-Capability Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" ``` which is what I would expect also in this jar. If possible I would be happy to assist fixing this issue but I am not sure where the build is configured.