-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·85 lines (75 loc) · 2.33 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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>auto-complete</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<version>3.8.1</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>commons-lang3</artifactId>
<groupId>org.apache.commons</groupId>
<version>${commons-lang.version}</version>
</dependency>
<!-- LOGGING -->
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<artifactId>slf4j-simple</artifactId>
<groupId>org.slf4j</groupId>
<scope>test</scope>
<version>${slf4j.version}</version>
</dependency>
<!-- TEST -->
<dependency>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
<scope>test</scope>
<version>${junit.version}</version>
</dependency>
<dependency>
<artifactId>hamcrest-all</artifactId>
<groupId>org.hamcrest</groupId>
<scope>test</scope>
<version>${hamcrest.version}</version>
</dependency>
<dependency>
<artifactId>mockito-all</artifactId>
<groupId>org.mockito</groupId>
<scope>test</scope>
<version>${mockito.version}</version>
</dependency>
</dependencies>
<groupId>net.acargil</groupId>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<properties>
<!-- project general properties -->
<commons-lang.version>3.4</commons-lang.version>
<hamcrest.version>1.3</hamcrest.version>
<!-- dependency versions -->
<java.version>11</java.version>
<junit.version>4.12</junit.version>
<mockito.version>1.10.19</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.7.20</slf4j.version>
</properties>
<version>0.0.2</version>
</project>