Skip to content

Instantly share code, notes, and snippets.

@gscheibel
Created January 21, 2013 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gscheibel/4588301 to your computer and use it in GitHub Desktop.
Save gscheibel/4588301 to your computer and use it in GitHub Desktop.
Jboss AS 7.1 OGM core module
<module xmlns="urn:jboss:module:1.1" name="org.hibernate" slot="ogm">
<resources>
<resource-root path="hibernate-ogm-core-4.0.0-SNAPSHOT.jar" />
</resources>
<dependencies>
<module name="org.hibernate" export="true" slot="main" />
<module name="org.slf4j" />
<module name="javax.api" />
<module name="javax.persistence.api" />
<module name="javax.transaction.api" />
<module name="javax.validation.api" />
<module name="org.dom4j" />
<module name="org.infinispan" export="true" optional="true" />
<module name="org.jboss.as.jpa.hibernate" slot="4" optional="true" />
<module name="org.jboss.logging" />
<!-- Allow Hibernate ORM to load com.arjuna.ats.jta.TransactionManager -->
<module name="org.jboss.jts" export="true" />
</depe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment