Update statement to stabilize rule changes
[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           </plugins>
23         </build>
24
25         <properties>
26                 <gamengine.version>3.15.0</gamengine.version>
27                 <maven.compiler.source>1.8</maven.compiler.source>
28                 <maven.compiler.target>1.8</maven.compiler.target>
29         </properties>
30
31         <dependencies>
32                 <dependency>
33                         <groupId>com.codingame.gameengine</groupId>
34                         <artifactId>core</artifactId>
35                         <version>${gamengine.version}</version>
36                 </dependency>
37
38                 <dependency>
39                         <groupId>com.codingame.gameengine</groupId>
40                         <artifactId>module-entities</artifactId>
41                         <version>${gamengine.version}</version>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>com.codingame.gameengine</groupId>
46                         <artifactId>module-toggle</artifactId>
47                         <version>${gamengine.version}</version>
48                 </dependency>
49
50                 <dependency>
51                         <groupId>com.codingame.gameengine</groupId>
52                         <artifactId>runner</artifactId>
53                         <version>${gamengine.version}</version>
54                 </dependency>
55         </dependencies>
56 </project>