145 lines
3.7 KiB
XML
145 lines
3.7 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">
|
|
|
|
<parent>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>masterbuild</artifactId>
|
|
<version>2.3.0</version>
|
|
<!-- relative path must be specified to pick up parent pom changes, otherwise
|
|
the parent POM must first be installed in the local repo -->
|
|
<relativePath>../masterbuild</relativePath>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>csf</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Java Core Components</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<testSourceDirectory>src/test</testSourceDirectory>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/test-resources</directory>
|
|
</testResource>
|
|
</testResources>
|
|
<plugins>
|
|
<!--
|
|
<plugin>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>Get Minimal Dovetail Code</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>${basedir}/get-dovetail.sh</executable>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<excludes>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- PIT Test Coverage/Mutation Testing -->
|
|
<plugin>
|
|
<groupId>org.pitest</groupId>
|
|
<artifactId>pitest-maven</artifactId>
|
|
<version>1.1.9</version>
|
|
<configuration>
|
|
<targetClasses>
|
|
<param>com.sequencelogic.*</param>
|
|
<param>com.sequencelogic.csf.component*</param>
|
|
<param>com.sequencelogic.csf.device*</param>
|
|
</targetClasses>
|
|
<excludedClasses>
|
|
<!-- <param>com.sequencelogic.sleds.models*</param> -->
|
|
</excludedClasses>
|
|
<targetTests>
|
|
<param>com.sequencelogic.csf.component*</param>
|
|
</targetTests>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency> <groupId>com.dt</groupId>
|
|
<artifactId>dtcore</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>eye</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>configuration</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20090211</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.pitest</groupId>
|
|
<artifactId>pitest-maven</artifactId>
|
|
<version>1.1.9</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>report</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|