Upgrade to engine 3.15.0
[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         <properties>
11                 <gamengine.version>3.15.0</gamengine.version>
12                 <maven.compiler.source>1.8</maven.compiler.source>
13                 <maven.compiler.target>1.8</maven.compiler.target>
14         </properties>
15
16         <dependencies>
17                 <dependency>
18                         <groupId>com.codingame.gameengine</groupId>
19                         <artifactId>core</artifactId>
20                         <version>${gamengine.version}</version>
21                 </dependency>
22
23                 <dependency>
24                         <groupId>com.codingame.gameengine</groupId>
25                         <artifactId>module-entities</artifactId>
26                         <version>${gamengine.version}</version>
27                 </dependency>
28
29                 <dependency>
30                         <groupId>com.codingame.gameengine</groupId>
31                         <artifactId>runner</artifactId>
32                         <version>${gamengine.version}</version>
33                 </dependency>
34         </dependencies>
35 </project>