1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-07 19:29:27 +00:00
symon/pom.xml

116 lines
2.8 KiB
XML
Raw Normal View History

2008-12-06 00:44:33 +00:00
<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">
2008-12-06 00:44:33 +00:00
<modelVersion>4.0.0</modelVersion>
2008-12-13 22:59:22 +00:00
<groupId>com.loomcom.symon</groupId>
<artifactId>symon</artifactId>
2008-12-06 00:44:33 +00:00
<packaging>jar</packaging>
<version>0.1</version>
2008-12-13 22:59:22 +00:00
<name>symon</name>
<url>http://www.loomcom.com/symon</url>
2010-02-08 19:31:13 +00:00
<repositories>
<repository>
<id>jline</id>
<name>JLine Project Repository</name>
<url>http://jline.sourceforge.net/m2repo</url>
</repository>
</repositories>
2008-12-06 00:44:33 +00:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
2008-12-06 00:44:33 +00:00
<scope>test</scope>
</dependency>
2010-02-08 19:31:13 +00:00
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.9</version>
</dependency>
2008-12-06 00:44:33 +00:00
</dependencies>
2008-12-06 02:03:00 +00:00
<build>
<plugins>
<!-- Set Java version to Java 1.5 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
2008-12-06 02:03:00 +00:00
<!-- Set up Main-Class in the JAR manifest -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
2008-12-13 22:59:22 +00:00
<mainClass>com.loomcom.symon.Simulator</mainClass>
<packageName>com.loomcom.symon</packageName>
2008-12-06 02:03:00 +00:00
</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>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
<regexes>
<regex>
2008-12-13 22:59:22 +00:00
<pattern>com.loomcom.symon.*</pattern>
<branchRate>90</branchRate>
<lineRate>90</lineRate>
</regex>
</regexes>
</check>
<instrumentation>
<includes>
2008-12-13 22:59:22 +00:00
<include>com/loomcom/symon/*.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>
2008-12-06 02:03:00 +00:00
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
2008-12-06 00:44:33 +00:00
</project>