Skip to content

Instantly share code, notes, and snippets.

@rchavarria
Created December 3, 2012 11:31
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 rchavarria/4194334 to your computer and use it in GitHub Desktop.
Save rchavarria/4194334 to your computer and use it in GitHub Desktop.
fragmento de pom.xml para configurar jpa, hibernate y derby
<!-- ... -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.6.2.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.4.0.GA</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment