32 lines
973 B
XML
Raw Normal View History

2015-04-12 23:49:00 +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>
2016-01-01 20:37:50 +02:00
<version>1.9.0</version>
2015-04-12 23:49:00 +03:00
</parent>
2015-04-15 21:16:56 +03:00
<artifactId>service-layer</artifactId>
2015-04-12 23:49:00 +03:00
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2015-12-29 01:19:46 +01:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
2015-04-12 23:49:00 +03:00
</dependencies>
</project>