Description
The oak-mk bundle depends on H2 database. It internally uses Class.forName('org.h2.Driver") to load the H2 driver. Due to usage of Class.forName Bnd is not able to add org.h2 package to Import-Package list. So it should have an explicit entry in the maven-bundle-plugin config as shown below
<Import-Package> org.h2;resolution:=optional, * </Import-Package>
Without this MicroKernalService loading would fail with a CNFE