mirror of
https://github.com/sethm/symon.git
synced 2024-11-05 15:04:41 +00:00
105 lines
2.5 KiB
XML
105 lines
2.5 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.loomcom.lm6502</groupId>
|
|
<artifactId>lm6502</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>snapshot</version>
|
|
<name>lm6502</name>
|
|
<url>http://www.loomcom.com/lm6502</url>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- Set Java version to 6 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<!-- best lock down version of the plugin too -->
|
|
<configuration>
|
|
<source>5</source>
|
|
<target>5</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Set up Main-Class in the JAR manifest -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.loomcom.lm6502.Simulator</mainClass>
|
|
<packageName>com.loomcom.lm6502</packageName>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<mode>development</mode>
|
|
<url>${pom.url}</url>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Cobertura is essential -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<check>
|
|
<haltOnFailure>false</haltOnFailure>
|
|
<regexes>
|
|
<regex>
|
|
<pattern>com.loomcom.lm6502.*</pattern>
|
|
<branchRate>90</branchRate>
|
|
<lineRate>90</lineRate>
|
|
</regex>
|
|
</regexes>
|
|
</check>
|
|
<instrumentation>
|
|
<includes>
|
|
<include>com/loomcom/lm6502/*.class</include>
|
|
</includes>
|
|
</instrumentation>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>clean</id>
|
|
<phase>pre-site</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>instrument</id>
|
|
<phase>site</phase>
|
|
<goals>
|
|
<goal>instrument</goal>
|
|
<goal>cobertura</goal>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
</project>
|