Skip to content

Instantly share code, notes, and snippets.

@DLucasBR
Created May 17, 2018 13:36
Show Gist options
  • Save DLucasBR/484aa353baa7cd485e96603cb25308cb to your computer and use it in GitHub Desktop.
Save DLucasBR/484aa353baa7cd485e96603cb25308cb to your computer and use it in GitHub Desktop.
Maven dependencies for hibernate
<!-- 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