Skip to content

Instantly share code, notes, and snippets.

@jeetprksh
Last active September 29, 2018 10:25
Show Gist options
  • Save jeetprksh/10c886cbf4cb33719787d44f931b438a to your computer and use it in GitHub Desktop.
Save jeetprksh/10c886cbf4cb33719787d44f931b438a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.jeetprksh</groupId>
<artifactId>hibernate-examples</artifactId>
<version>1.0-SNAPSHOT</version>
<name>hibernate-examples</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.11</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.2.10.Final</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment