| hibernate-validator-cdi artefact does not contain any Import-Export package definitions in manifest. It's needed in order to use the artefact in an OSGI container. As a workaround, I OSGIfied the artefact with bnd tool with:
java -cp bnd-2.4.0.jar:bndlib-2.4.0.jar aQute.bnd.main.bnd wrap --properties /path/to/bnd.properties --output /path/to/hibernate-validator-cdi-5.2.4.Final-patched.jar /path/to/hibernate-validator-cdi-5.2.4.Final.jar
content of bnd.properties:
version: 5.2.4.Final
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.hibernate
Bundle-Version: ${version}
Bundle-Name: hibernate-validator-cdi
Export-Package: *;version=${version}
Import-Package: *
The files bnd-2.4.0.jar and bndlib-2.4.0.jar can be downloaded through links. |