2017-09-16 17:20:51 +05:30
|
|
|
<?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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>java-design-patterns</artifactId>
|
|
|
|
<groupId>com.iluwatar</groupId>
|
2018-01-01 16:50:05 +02:00
|
|
|
<version>1.18.0</version>
|
2017-09-16 17:20:51 +05:30
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>unit-of-work</artifactId>
|
2017-09-16 21:35:27 +05:30
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
2017-12-31 16:29:48 +09:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-09-16 21:35:27 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-09-16 17:20:51 +05:30
|
|
|
|
|
|
|
|
|
|
|
</project>
|