hibernate-orm/hibernate-osgi
Steve Ebersole 9e063ffa25 HHH-9837 - Remove reliance during annotation binding on org.hibernate.internal.util.ClassLoaderHelper
HHH-9841 - Redesign org.hibernate.property.PropertyAccessorFactory
2015-06-04 14:12:17 -05:00
..
src HHH-9837 - Remove reliance during annotation binding on org.hibernate.internal.util.ClassLoaderHelper 2015-06-04 14:12:17 -05:00
README.md hibernate-osgi test debugging README 2015-03-10 12:25:06 -04:00
hibernate-osgi.gradle HHH-9830 - Upgrade to jboss-logging 3.3 Final (rather than Beta) 2015-05-28 16:46:15 -05:00

README.md

hibernate-osgi Test Debugging

Here's a quick tip for debugging hibernate-osgi test failures. Sometimes, a dependency or code change will result in an error that looks like the following:

Caused by: java.lang.ClassNotFoundException: *** Class 'org.hibernate.osgi.test.OsgiTestCase' was not found, but
this is likely normal since package 'org.hibernate.osgi.test' is dynamically imported by bundle
arquillian-osgi-bundle [5]. However, bundle hibernate-osgi-test [20] does export this package with attributes that
do not match. ***

That error is extremely misleading and is not the actual problem. To get to the root issue, open this file:

hibernate-osgi/target/test-results/TEST-org.hibernate.osgi.test.OsgiTestCase.xml

The root issue will usually be embedded half-way through. More often than not, searching for org.osgi.framework.BundleException will find it.