180 lines
5.1 KiB
XML
180 lines
5.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>sgsl-dataflow</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>Storage Monster and Dataflow</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||
|
|
<testResources><testResource><directory>src/test-resources</directory></testResource></testResources>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
<excludes>
|
||
|
|
<exclude>**/SGPWebServlet.java</exclude>
|
||
|
|
<exclude>**/SGPWebServices.java</exclude>
|
||
|
|
<exclude>**/SGWebServices.java</exclude>
|
||
|
|
</excludes>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.dstovall</groupId>
|
||
|
|
<artifactId>onejar-maven-plugin</artifactId>
|
||
|
|
<version>1.3.0</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<configuration>
|
||
|
|
<mainClass>com.sequencelogic.web.sgsl.PoolBoy</mainClass>
|
||
|
|
<filename>sgsl-dataflow-one-jar.jar</filename>
|
||
|
|
</configuration>
|
||
|
|
<goals>
|
||
|
|
<goal>one-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.sgsl*</param>
|
||
|
|
</targetClasses>
|
||
|
|
<excludedClasses>
|
||
|
|
<!-- <param>com.sequencelogic.sleds.models*</param> -->
|
||
|
|
</excludedClasses>
|
||
|
|
<targetTests>
|
||
|
|
<param>com.sequencelogic.web.sgsl*</param>
|
||
|
|
</targetTests>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- test -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.12</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.json</groupId>
|
||
|
|
<artifactId>json</artifactId>
|
||
|
|
<version>20090211</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- compile/provided -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-httpclient</groupId>
|
||
|
|
<artifactId>commons-httpclient</artifactId>
|
||
|
|
<version>3.1</version>
|
||
|
|
<!--
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>commons-codec</artifactId>
|
||
|
|
<groupId>commons-codec</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
-->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.dt</groupId>
|
||
|
|
<artifactId>dtdb</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.dt</groupId>
|
||
|
|
<artifactId>dtcs</artifactId>
|
||
|
|
<version>1.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>csf</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>web</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>data</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>configuration</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.amazonaws</groupId>
|
||
|
|
<artifactId>aws-java-sdk</artifactId>
|
||
|
|
<version>1.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>posting</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>web</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>test-jar</type>
|
||
|
|
<scope>test</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>
|