2020-07-15 20:53:23 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-10 10:35:39 -04:00
|
|
|
<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">
|
2020-07-15 20:53:23 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>java-jpa-3</artifactId>
|
|
|
|
<name>java-jpa-3</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>persistence-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>${hibernate.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-jpamodelgen</artifactId>
|
|
|
|
<version>${hibernate.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
</dependency>
|
2020-10-27 21:59:40 -04:00
|
|
|
<dependency>
|
2023-11-22 22:36:50 -05:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2021-03-24 07:32:33 -04:00
|
|
|
<version>${mysql.version}</version>
|
2020-10-27 21:59:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2021-03-24 07:32:33 -04:00
|
|
|
<version>${jackson.version}</version>
|
2020-10-27 21:59:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-hibernate5</artifactId>
|
2021-03-24 07:32:33 -04:00
|
|
|
<version>${jackson.version}</version>
|
2020-10-27 21:59:40 -04:00
|
|
|
</dependency>
|
2020-07-15 20:53:23 -04:00
|
|
|
<!--Compile time JPA API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
<version>${javax.persistence-api.version}</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>
|
2021-06-11 10:55:37 -04:00
|
|
|
<version>${postgresql.version}</version>
|
2020-07-15 20:53:23 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2021-08-31 14:44:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2022-08-08 09:55:28 -04:00
|
|
|
<version>${testcontainers.version}</version>
|
2021-08-31 14:44:43 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-07-15 20:53:23 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgument>-proc:none</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<hibernate.version>5.4.14.Final</hibernate.version>
|
|
|
|
<eclipselink.version>2.7.4</eclipselink.version>
|
2023-11-22 22:36:50 -05:00
|
|
|
<mysql.version>8.2.0</mysql.version>
|
2020-07-15 20:53:23 -04:00
|
|
|
<javax.persistence-api.version>2.2</javax.persistence-api.version>
|
|
|
|
<maven-processor-plugin.version>3.3.3</maven-processor-plugin.version>
|
|
|
|
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
|
2022-12-20 12:47:29 -05:00
|
|
|
<h2.version>2.1.214</h2.version>
|
2020-07-15 20:53:23 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-10 10:35:39 -04:00
|
|
|
</project>
|