-
Notifications
You must be signed in to change notification settings - Fork 79
/
pom.xml
75 lines (72 loc) · 2.94 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
<project>
<artifactId>townsville-library</artifactId>
<groupId>fr.d2factory</groupId>
<modelVersion>4.0.0</modelVersion>
<name>Townsville Library</name>
<version>1.0.0</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>================================================================================================</echo>
<echo>================================================================================================</echo>
<echo>== _____ _ _ _ _____ _ ==</echo>
<echo>== | __ \ | | | | | | | __ \ | | ==</echo>
<echo>== | |__) |___ __ _ __| | | |_| |__ ___ | |__) |___ __ _ __| |_ __ ___ ___ ==</echo>
<echo>== | _ // _ \/ _` |/ _` | | __| '_ \ / _ \ | _ // _ \/ _` |/ _` | '_ ` _ \ / _ \ ==</echo>
<echo>== | | \ \ __/ (_| | (_| | | |_| | | | __/ | | \ \ __/ (_| | (_| | | | | | | __/ ==</echo>
<echo>== |_| \_\___|\__,_|\__,_| \__|_| |_|\___| |_| \_\___|\__,_|\__,_|_| |_| |_|\___| ==</echo>
<echo>================================================================================================</echo>
<echo>================================================================================================</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<!-- JUnit 5 requires Surefire version 2.22.1 or higher -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.2</version>
</dependency>
</dependencies>
</project>