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>
6 <groupId>com.codingame.game</groupId>
7 <artifactId>castle-troll</artifactId>
8 <version>0.5-git</version>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <version>3.8.1</version>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-surefire-plugin</artifactId>
25 <version>3.0.0-M4</version>
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>
38 <groupId>com.codingame.gameengine</groupId>
39 <artifactId>core</artifactId>
40 <version>${gamengine.version}</version>
44 <groupId>com.codingame.gameengine</groupId>
45 <artifactId>module-entities</artifactId>
46 <version>${gamengine.version}</version>
50 <groupId>com.codingame.gameengine</groupId>
51 <artifactId>module-toggle</artifactId>
52 <version>${gamengine.version}</version>
56 <groupId>com.codingame.gameengine</groupId>
57 <artifactId>runner</artifactId>
58 <version>${gamengine.version}</version>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>4.11</version>