forked from gardncl/elements-of-programming-interviews
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
87 lines (82 loc) · 3.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<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>
<groupId>gardncl</groupId>
<artifactId>elements-of-programming-interviews</artifactId>
<version>1.0</version>
<modules>
<module>datastructures</module>
<module>utils</module>
<module>primitives</module>
<module>arrays</module>
<module>strings</module>
<module>linkedlists</module>
<module>stacksandqueues</module>
<module>binarytrees</module>
<module>heaps</module>
<module>searching</module>
<module>hashtables</module>
<module>sorting</module>
<module>binarysearchtrees</module>
<module>recursion</module>
<module>dynamicprogramming</module>
<module>greedyalgorithms</module>
<module>graphs</module>
<module>parallelcomputing</module>
</modules>
<packaging>pom</packaging>
<name>Elements of Programming Interviews</name>
<url>https://github.com/gardncl/elements-of-programming-interviews</url>
<properties>
<javac.version>1.8</javac.version>
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.16</maven-surefire-plugin.version>
<mockito-core.version>1.10.19</mockito-core.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<junit.version>4.12</junit.version>
</properties>
<build>
<directory>out</directory>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${javac.version}</source>
<target>${javac.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>