2017-07-29 12:59:53 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<properties>
|
2017-11-26 16:38:44 +00:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2018-02-12 22:41:46 +00:00
|
|
|
<argLine> -Xmx2048m</argLine>
|
2017-07-29 12:59:53 +00:00
|
|
|
</properties>
|
|
|
|
|
2018-02-12 21:26:15 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>project.local</id>
|
|
|
|
<name>project</name>
|
|
|
|
<url>file:${basedir}/repo</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2017-07-29 12:59:53 +00:00
|
|
|
<groupId>dk.camelot64.kickc</groupId>
|
|
|
|
<artifactId>kickc</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2018-02-12 21:26:15 +00:00
|
|
|
|
2017-07-29 12:59:53 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
<version>4.7</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-02-12 20:39:26 +00:00
|
|
|
<groupId>cml.kickass</groupId>
|
|
|
|
<artifactId>kickassembler</artifactId>
|
|
|
|
<version>4.19</version>
|
2017-07-29 12:59:53 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-02-12 20:58:10 +00:00
|
|
|
|
2017-07-29 12:59:53 +00:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
2017-12-28 14:34:31 +00:00
|
|
|
<includes>
|
|
|
|
<include>**/*.asm</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-02-12 21:42:16 +00:00
|
|
|
|
2017-12-28 14:34:31 +00:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/java</directory>
|
2017-07-29 12:59:53 +00:00
|
|
|
<includes>
|
|
|
|
<include>**/*.kc</include>
|
|
|
|
<include>**/*.asm</include>
|
|
|
|
<include>**/*.sym</include>
|
|
|
|
<include>**/*.cfg</include>
|
|
|
|
<include>**/*.log</include>
|
|
|
|
</includes>
|
2017-12-28 14:34:31 +00:00
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2018-02-12 21:42:16 +00:00
|
|
|
|
2018-01-01 14:59:15 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.19</version>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-02-12 21:42:16 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.7.5.201505241946</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>pre-unit-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>post-unit-test</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-01-01 14:59:15 +00:00
|
|
|
</plugins>
|
2017-07-29 12:59:53 +00:00
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|