| Add a `Automatic-Module-Name` entry in each JAR's MANIFEST.MF file. The naming convention we agree on was to use org.hibernate.orm as the base name and to use the module name as the final part (with our without the hibernate- part?). E.g.,
- org.hibernate.orm.c3p0
- org.hibernate.orm.core
- ...
Or, using hibernate-:
- org.hibernate.orm.hibernate-c3p0
- org.hibernate.orm.hibernate-core
- ...
|