2020-03-21 13:50:07 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-03-21 13:57:30 -04:00
|
|
|
<artifactId>spring-persistence-simple-2</artifactId>
|
2020-03-21 13:50:07 -04:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2020-03-21 13:57:30 -04:00
|
|
|
<name>spring-persistence-simple-2</name>
|
2020-03-21 13:50:07 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>persistence-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- persistence -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-07-07 07:18:10 -04:00
|
|
|
|
|
|
|
<!-- simple-jndi -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.h-thurow</groupId>
|
|
|
|
<artifactId>simple-jndi</artifactId>
|
|
|
|
<version>${simple-jndi.version}</version>
|
|
|
|
</dependency>
|
2020-03-21 13:50:07 -04:00
|
|
|
|
|
|
|
<!-- test scoped -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- Spring -->
|
|
|
|
<org.springframework.version>5.2.4.RELEASE</org.springframework.version>
|
|
|
|
<!-- persistence -->
|
|
|
|
<h2.version>1.4.200</h2.version>
|
2020-07-07 07:18:10 -04:00
|
|
|
<!-- simple-jndi -->
|
|
|
|
<simple-jndi.version>0.23.0</simple-jndi.version>
|
2020-03-21 13:50:07 -04:00
|
|
|
<!-- test scoped -->
|
|
|
|
<mockito.version>3.3.3</mockito.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|