Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.hibernate</groupId>
  3. <artifactId>hibernate-core</artifactId>
  4. <version>5.1.0.Final</version>
  5. <scope>provided</scope>
  6. </dependency>
  7.  
  8. <dependency>
  9. <groupId>org.hibernate</groupId>
  10. <artifactId>hibernate-validator</artifactId>
  11. <version>5.2.4.Final</version>
  12. <scope>provided</scope>
  13. </dependency>
  14.  
  15. <!-- for JPA, use hibernate-entitymanager instead of hibernate-core -->
  16. <dependency>
  17. <groupId>org.hibernate</groupId>
  18. <artifactId>hibernate-entitymanager</artifactId>
  19. <version>5.1.0.Final</version>
  20. <scope>provided</scope>
  21. </dependency>
  22.  
  23. <dependency>
  24. <groupId>org.hibernate</groupId>
  25. <artifactId>hibernate-ehcache</artifactId>
  26. <version>5.1.0.Final</version>
  27. <scope>provided</scope>
  28. </dependency>
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>5.1.38</version>
  44. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement