2018-07-23 00:49:25 -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-10-20 01:57:08 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
2018-11-30 11:46:08 -05:00
|
|
|
<name>spring-data-jpa</name>
|
2018-10-20 01:57:08 -04:00
|
|
|
|
2018-07-23 00:49:25 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-10-20 01:57:08 -04:00
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
2018-07-23 00:49:25 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
2018-08-30 14:45:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-ehcache</artifactId>
|
|
|
|
</dependency>
|
2018-09-01 08:21:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-envers</artifactId>
|
|
|
|
</dependency>
|
2019-02-12 00:09:37 -05:00
|
|
|
|
2018-07-23 00:49:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2018-08-30 14:45:12 -04:00
|
|
|
|
2019-02-12 00:09:37 -05:00
|
|
|
<!-- Test containers only dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2019-07-06 15:38:17 -04:00
|
|
|
<version>${testcontainers.postgresql.version}</version>
|
2019-02-12 00:09:37 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2019-07-06 15:38:17 -04:00
|
|
|
<version>${postgresql.version}</version>
|
2019-02-12 00:09:37 -05:00
|
|
|
</dependency>
|
|
|
|
<!-- Test containers only dependencies -->
|
|
|
|
|
2018-09-01 08:21:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-28 06:33:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-01 08:21:57 -04:00
|
|
|
|
2018-08-30 14:45:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2019-07-06 15:38:17 -04:00
|
|
|
<version>${guava.version}</version>
|
2018-08-30 14:45:12 -04:00
|
|
|
</dependency>
|
2018-09-07 20:05:31 -04:00
|
|
|
|
|
|
|
<!-- JUnit Jupiter dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- JUnit platform launcher -->
|
|
|
|
<!-- To be able to run tests from IDE directly -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-launcher</artifactId>
|
|
|
|
<version>${junit-platform.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-07-23 00:49:25 -04:00
|
|
|
</dependencies>
|
2019-02-26 15:28:52 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.boot.Application</start-class>
|
2019-07-06 15:38:17 -04:00
|
|
|
<testcontainers.postgresql.version>1.10.6</testcontainers.postgresql.version>
|
|
|
|
<postgresql.version>42.2.5</postgresql.version>
|
|
|
|
<guava.version>21.0</guava.version>
|
2019-02-26 15:28:52 -05:00
|
|
|
</properties>
|
2018-07-23 00:49:25 -04:00
|
|
|
|
|
|
|
</project>
|