-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
41 lines (37 loc) · 941 Bytes
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>ru.evrnsky.chapter12</groupId>
<artifactId>chapter12</artifactId>
<name>chapter12</name>
<version>1.0.0</version>
<packaging>pom</packaging>
<parent>
<groupId>ru.evrnsky</groupId>
<artifactId>tracker</artifactId>
<version>1.0.0</version>
</parent>
<modules>
<module>Combinate</module>
<module>DataStructure</module>
<module>Dynamic</module>
<module>Graphs</module>
<module>sortAndSearch</module>
</modules>
<dependencies>
<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.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>