I'm trying to include javax.json.jar
to my project in Jdeveloper 12c IDE
The final phillplugin.jar
includes:
META-INF
folder containingMANIFEST.MF
filephillplugin
folder which includes myphillplugin.class
javax.json-1.0.2.jar
filephillplugin.xml
Although the server crashes because it doesn't recognize my javax.json class from the MANIFEST.MF
file with the following Error:
Unable to resolve 2.0: missing requirement [2.0] osgi.wiring.package; (osgi.wiring.package=javax.json)
This is how i'm exporting it:
- Right click the project -> properties
- Libraries / Classpath -> checking the
javax.json-1.0.2.jar
- Deployment -> editing deployed my profile
- File Groups -> new -> type: Libraries name: lib
- Contributors : Everything is checked
- Filters: checking the
javax.json-1.0.2.jar
and then im deploying it.
Is the way i'm doing it wrong?