Created
May 17, 2018 13:36
-
-
Save DLucasBR/484aa353baa7cd485e96603cb25308cb to your computer and use it in GitHub Desktop.
Maven dependencies for hibernate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Núcleo do Hibernate --> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-core</artifactId> | |
<version>4.2.3.Final</version> | |
<scope>compile</scope> | |
</dependency> | |
<!-- Implementação de EntityManager da JPA --> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>4.2.3.Final</version> | |
<scope>compile</scope> | |
</dependency> | |
<!-- Driver JDBC do MySQL --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.25</version> | |
<scope>compile</scope> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment