2015-07-20 19:11:19 +03:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.iluwatar</groupId>
|
|
|
|
<artifactId>java-design-patterns</artifactId>
|
2015-11-01 22:22:31 +02:00
|
|
|
<version>1.8.0-SNAPSHOT</version>
|
2015-07-20 19:11:19 +03:00
|
|
|
</parent>
|
|
|
|
<artifactId>repository</artifactId>
|
|
|
|
<dependencies>
|
2015-07-21 21:11:22 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
</dependency>
|
2015-07-21 23:23:36 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2015-07-22 00:17:32 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-07-20 19:11:19 +03:00
|
|
|
</dependencies>
|
|
|
|
</project>
|