158 lines
4.1 KiB
XML
158 lines
4.1 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>web</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>Java Web 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-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.web*</param>
|
||
|
|
<param>com.sequencelogic.web.client*</param>
|
||
|
|
<param>com.sequencelogic.web.app*</param>
|
||
|
|
<param>com.sequencelogic.web.cg*</param>
|
||
|
|
</targetClasses>
|
||
|
|
<excludedClasses>
|
||
|
|
<!-- <param>com.sequencelogic.sleds.models*</param> -->
|
||
|
|
</excludedClasses>
|
||
|
|
<targetTests>
|
||
|
|
<param>com.sequencelogic.web*</param>
|
||
|
|
<param>com.sequencelogic.web.client*</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>org.json</groupId>
|
||
|
|
<artifactId>json</artifactId>
|
||
|
|
<version>20090211</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.2.1</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
<version>3.3.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>csf</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>sleds-core-api</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-core</artifactId>
|
||
|
|
<version>2.4.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>mq</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</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>
|