After following the instructions for getting reversing engineering to work for Oracle:


http://nidget.wordpress.com/2011/07/21/how-to-osgify-an-oracle-jdbc-driver-with-spring-roo/


http://stackoverflow.com/questions/7...db-integration

I think I am getting close, but end up with a NoClassDefFoundError: org/ietf/jgss/GSSException

As mentioned in the links, I removed the following from the Import-Package section of the manifest in the wrapped driver:

com.sun.security.auth.module
oracle.i18n.text,
oracle.i18n.text.converter
oracle.ons,oracle.security.pki

All the bundles look active:
...
[ 68] [Active ] [ 1] Spring Roo - Wrapping - protobuf-java-lite (2.3.0.0001)
[ 69] [Active ] [ 1] Spring User Agent Analysis - Client (1.0.2.RELEASE)
[ 70] [Active ] [ 1] Spring Roo - Addon - RooBot (Eclipse Implementation) (1.1.5.RELEASE)
[ 71] [Active ] [ 1] Spring Roo - Shell (Eclipse Implementation) (1.2.0.BUILD-SNAPSHOT)
[ 74] [Active ] [ 1] Java Resource API (1.5.0)
[ 81] [Active ] [ 1] Java Transaction API (1.1.0)
[ 82] [Active ] [ 1] com-oracle-roo-jdbc (11.1.0.7_0_0001)

but can't figure out what is causing this error. Do I need some other dependency, remove more from the Imports-Package section, or add more the the classpath when running Roo?

Thanks in advance for help.