2018-07-08 07:44:42 -04:00
|
|
|
<?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">
|
2018-11-30 11:46:08 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>java-jpa</artifactId>
|
2019-01-10 10:22:07 -05:00
|
|
|
<name>java-jpa</name>
|
|
|
|
|
2018-07-08 07:44:42 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>${hibernate.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
</dependency>
|
2019-01-10 10:22:07 -05:00
|
|
|
|
|
|
|
<!--Compile time JPA API-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--Runtime JPA implementation-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
|
|
<artifactId>eclipselink</artifactId>
|
|
|
|
<version>${eclipselink.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>${postgres.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2018-07-08 07:44:42 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2019-01-10 10:22:07 -05:00
|
|
|
<hibernate.version>5.4.0.Final</hibernate.version>
|
|
|
|
<eclipselink.version>2.7.4-RC1</eclipselink.version>
|
|
|
|
<postgres.version>42.2.5</postgres.version>
|
2018-07-08 07:44:42 -04:00
|
|
|
</properties>
|
2019-01-10 10:22:07 -05:00
|
|
|
|
2018-07-08 07:44:42 -04:00
|
|
|
</project>
|