31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
|
<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>
|
||
|
<parent>
|
||
|
<groupId>com.iluwatar</groupId>
|
||
|
<artifactId>java-design-patterns</artifactId>
|
||
|
<version>1.21.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>typeobjectpattern</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.json-simple</groupId>
|
||
|
<artifactId>json-simple</artifactId>
|
||
|
<version>1.1.1</version>
|
||
|
</dependency>
|
||
|
<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>
|
||
|
<dependency>
|
||
|
<groupId>org.mockito</groupId>
|
||
|
<artifactId>mockito-core</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|