Clean up testing
[troll.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6         <groupId>com.codingame.game</groupId>
7         <artifactId>castle-troll</artifactId>
8         <version>0.5-git</version>
9
10         <build>
11           <plugins>
12             <plugin>
13               <groupId>org.apache.maven.plugins</groupId>
14               <artifactId>maven-compiler-plugin</artifactId>
15               <version>3.8.1</version>
16               <configuration>
17                 <compilerArgs>
18                   <arg>-Xlint</arg>
19                 </compilerArgs>
20               </configuration>
21             </plugin>
22             <plugin>
23               <groupId>org.apache.maven.plugins</groupId>
24               <artifactId>maven-surefire-plugin</artifactId>
25               <version>3.0.0-M4</version>
26             </plugin>
27           </plugins>
28         </build>
29
30         <properties>
31                 <gamengine.version>3.15.0</gamengine.version>
32                 <maven.compiler.source>1.8</maven.compiler.source>
33                 <maven.compiler.target>1.8</maven.compiler.target>
34         </properties>
35
36         <dependencies>
37                 <dependency>
38                         <groupId>com.codingame.gameengine</groupId>
39                         <artifactId>core</artifactId>
40                         <version>${gamengine.version}</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>com.codingame.gameengine</groupId>
45                         <artifactId>module-entities</artifactId>
46                         <version>${gamengine.version}</version>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>com.codingame.gameengine</groupId>
51                         <artifactId>module-toggle</artifactId>
52                         <version>${gamengine.version}</version>
53                 </dependency>
54
55                 <dependency>
56                         <groupId>com.codingame.gameengine</groupId>
57                         <artifactId>runner</artifactId>
58                         <version>${gamengine.version}</version>
59                 </dependency>
60
61                 <dependency>
62                   <groupId>junit</groupId>
63                   <artifactId>junit</artifactId>
64                   <version>4.11</version>
65                   <scope>test</scope>
66                 </dependency>
67         </dependencies>
68 </project>