379 lines
10 KiB
XML
379 lines
10 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>sli</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<name>SLEDS UX and Web Services</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<defaultGoal>install</defaultGoal>
|
||
|
|
<testSourceDirectory>src/test</testSourceDirectory>
|
||
|
|
<testResources><testResource><directory>src/test-resources</directory></testResource></testResources>
|
||
|
|
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
|
<version>2.4.3</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>filter-resources</id>
|
||
|
|
<phase>validate</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>copy-resources</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<outputDirectory>${basedir}/filtered-target</outputDirectory>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/webapp</directory>
|
||
|
|
<filtering>true</filtering>
|
||
|
|
<excludes>
|
||
|
|
<exclude>WEB-INF/*.p12</exclude>
|
||
|
|
<exclude>WEB-INF/lib/*.jar</exclude>
|
||
|
|
<exclude>css/*font/*.*</exclude>
|
||
|
|
</excludes>
|
||
|
|
</resource>
|
||
|
|
<resource>
|
||
|
|
<directory>../libeye.js</directory>
|
||
|
|
<filtering>true</filtering>
|
||
|
|
<includes>
|
||
|
|
<include>js/*.js</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
<resource>
|
||
|
|
<directory>../webcore/src/main/webapp</directory>
|
||
|
|
<filtering>true</filtering>
|
||
|
|
<includes>
|
||
|
|
<include>js/**/*.js</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/webapp</directory>
|
||
|
|
<filtering>false</filtering>
|
||
|
|
<includes>
|
||
|
|
<include>WEB-INF/*.p12</include>
|
||
|
|
<include>WEB-INF/lib/*.jar</include>
|
||
|
|
<include>css/*font/*.*</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>2.0.1</version>
|
||
|
|
<configuration>
|
||
|
|
<warName>${project.artifactId}</warName>
|
||
|
|
<webResources>
|
||
|
|
<!-- use the generated HTML/js/css/et al files! -->
|
||
|
|
<resource>
|
||
|
|
<directory>${basedir}/filtered-target</directory>
|
||
|
|
<includes>
|
||
|
|
<include> **/* </include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
</webResources>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-clean-plugin</artifactId>
|
||
|
|
<version>2.4.1</version>
|
||
|
|
<configuration>
|
||
|
|
<filesets>
|
||
|
|
<fileset>
|
||
|
|
<directory>${basedir}/filtered-target</directory>
|
||
|
|
<includes>
|
||
|
|
<include>**/*</include>
|
||
|
|
</includes>
|
||
|
|
<followSymlinks>false</followSymlinks>
|
||
|
|
</fileset>
|
||
|
|
</filesets>
|
||
|
|
</configuration>
|
||
|
|
</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.cgsl*</param>
|
||
|
|
<param>com.sequencelogic.web.cgsl.filedownloadsupport*</param>
|
||
|
|
</targetClasses>
|
||
|
|
<excludedClasses>
|
||
|
|
<!-- <param>com.sequencelogic.sleds.models*</param> -->
|
||
|
|
</excludedClasses>
|
||
|
|
<targetTests>
|
||
|
|
<param>com.sequencelogic.web.cgsl*</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>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.sun.jersey</groupId>
|
||
|
|
<artifactId>jersey-json</artifactId>
|
||
|
|
<version>1.17.1</version>
|
||
|
|
</dependency>
|
||
|
|
-->
|
||
|
|
|
||
|
|
<!--
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.jersey.jersey-test-framework</groupId>
|
||
|
|
<artifactId>jersey-test-framework-core</artifactId>
|
||
|
|
<version>1.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.jersey.jersey-test-framework</groupId>
|
||
|
|
<artifactId>jersey-test-framework-grizzly</artifactId>
|
||
|
|
<version>1.3</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.jersey.jersey-test-framework</groupId>
|
||
|
|
<artifactId>jersey-test-framework-grizzly2</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.activation</groupId>
|
||
|
|
<artifactId>activation</artifactId>
|
||
|
|
<version>1.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>servlet-api</artifactId>
|
||
|
|
<version>3.0-alpha-1</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet.jsp</groupId>
|
||
|
|
<artifactId>jsp-api</artifactId>
|
||
|
|
<version>2.1</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.ws.rs</groupId>
|
||
|
|
<artifactId>jsr311-api</artifactId>
|
||
|
|
<version>1.1.1</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>eye</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>convertasaurus</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</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>sgsl-dataflow</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>posting</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<type>jar</type>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-collections</groupId>
|
||
|
|
<artifactId>commons-collections</artifactId>
|
||
|
|
<version>3.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.mail</groupId>
|
||
|
|
<artifactId>mail</artifactId>
|
||
|
|
<version>1.4.7</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.json</groupId>
|
||
|
|
<artifactId>json</artifactId>
|
||
|
|
<version>20090211</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Monitoring and reporting -->
|
||
|
|
<!-- javamelody-core -->
|
||
|
|
<!-- itext, option to add PDF export -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.lowagie</groupId>
|
||
|
|
<artifactId>itext</artifactId>
|
||
|
|
<version>2.1.7</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>bcmail-jdk14</artifactId>
|
||
|
|
<groupId>bouncycastle</groupId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>bcprov-jdk14</artifactId>
|
||
|
|
<groupId>bouncycastle</groupId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>bctsp-jdk14</artifactId>
|
||
|
|
<groupId>bouncycastle</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</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.dt</groupId>
|
||
|
|
<artifactId>dtcs</artifactId>
|
||
|
|
<version>1.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.dt</groupId>
|
||
|
|
<artifactId>dtservlet</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
|
<version>1.7.7</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.graylog2</groupId>
|
||
|
|
<artifactId>gelfj</artifactId>
|
||
|
|
<version>1.1.7</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.jhlabs</groupId>
|
||
|
|
<artifactId>filters</artifactId>
|
||
|
|
<version>2.0.235</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.octo.captcha</groupId>
|
||
|
|
<artifactId>jcaptcha</artifactId>
|
||
|
|
<version>2.0-alpha-1</version>
|
||
|
|
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/jcaptcha-2.0-alpha-1.jar</systemPath>
|
||
|
|
<scope>system</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.octo.captcha</groupId>
|
||
|
|
<artifactId>jcaptcha-integration-simple-servlet</artifactId>
|
||
|
|
<version>2.0-alpha-1</version>
|
||
|
|
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/jcaptcha-integration-simple-servlet-2.0-alpha-1.jar</systemPath>
|
||
|
|
<scope>system</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.octo.captcha</groupId>
|
||
|
|
<artifactId>jcaptcha-api</artifactId>
|
||
|
|
<version>2.0-alpha-1</version>
|
||
|
|
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/jcaptcha-api-2.0-alpha-1.jar</systemPath>
|
||
|
|
<scope>system</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>
|