pom.xml revision 64754e3e0d97fc473bedb0e8ec45a7f307429be1
1155N/A<?xml version="1.0" encoding="UTF-8"?>
1278N/A<!--
2868N/A The contents of this file are subject to the terms of the Common Development and
2868N/A Distribution License (the License). You may not use this file except in compliance with the
2868N/A License.
2868N/A
2868N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
2868N/A specific language governing permission and limitations under the License.
2868N/A
2868N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
2868N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
2868N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
2868N/A information: "Portions Copyrighted [year] [name of copyright owner]".
2868N/A
2868N/A Copyright 2011-2013 ForgeRock AS. All rights reserved.
2868N/A-->
2868N/A<!--
2868N/A Portions Copyrighted 2013 Syntegrity.
2868N/A-->
2868N/A<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/xsd/maven-4.0.0.xsd">
2868N/A <modelVersion>4.0.0</modelVersion>
2868N/A
2868N/A <parent>
2868N/A <groupId>org.forgerock.openam</groupId>
2868N/A <artifactId>openam-auth-deviceprint</artifactId>
2868N/A <version>13.0.0-RC9</version>
2868N/A </parent>
2868N/A
2868N/A <name>OpenAM Auth Device Print Module Scripts</name>
2874N/A <description>
1155N/A OpenAM Authentication Device Print Module Scripts.
1155N/A A set of JS collectors to gather user device print.
2868N/A </description>
2868N/A <artifactId>openam-auth-deviceprint-scripts</artifactId>
2868N/A <packaging>js</packaging>
1155N/A
1155N/A <dependencies>
2868N/A <dependency>
2868N/A <groupId>org.codehaus.mojo</groupId>
2868N/A <artifactId>jquery-amd</artifactId>
1155N/A <type>js</type>
2868N/A </dependency>
2868N/A <dependency>
1155N/A <groupId>org.codehaus.jstestrunner</groupId>
1155N/A <artifactId>jstestrunner-junit</artifactId>
2624N/A </dependency>
1155N/A </dependencies>
1155N/A
1155N/A <build>
2868N/A <resources>
1155N/A <resource>
1155N/A <directory>${basedir}/src/main/js</directory>
2868N/A </resource>
2868N/A <resource>
1155N/A <directory>${basedir}/src/main/resources</directory>
1155N/A </resource>
2868N/A </resources>
2868N/A <testResources>
2868N/A <testResource>
2868N/A <directory>${basedir}/src/test/js</directory>
2868N/A </testResource>
1155N/A <testResource>
1155N/A <directory>${basedir}/src/test/resources</directory>
1155N/A </testResource>
1155N/A </testResources>
1155N/A <extensions>
1155N/A <extension>
1155N/A <groupId>org.codehaus.mojo</groupId>
1155N/A <artifactId>javascript-maven-plugin</artifactId>
1155N/A <version>2.0.0-alpha-1</version>
1155N/A </extension>
2868N/A </extensions>
1155N/A
2868N/A <plugins>
2868N/A <plugin>
2868N/A <groupId>org.codehaus.mojo</groupId>
1155N/A <artifactId>jslint-maven-plugin</artifactId>
1155N/A <configuration>
1155N/A <assumeConsoleAlertEtc>true</assumeConsoleAlertEtc>
1155N/A <strictWhiteSpace>false</strictWhiteSpace>
1155N/A <excludes>
1155N/A <exclude>**/libs/*.js</exclude>
1155N/A <exclude>**/*Test.js</exclude>
1155N/A </excludes>
1155N/A </configuration>
1155N/A </plugin>
1155N/A <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>webminifier-maven-plugin</artifactId>
<configuration>
<splitDependencies>false</splitDependencies>
</configuration>
<executions>
<execution>
<id>default-minify-js</id>
<phase>none</phase>
<goals>
<goal>minify-js</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/zip.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>zip-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>js-import-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.mcheely</groupId>
<artifactId>requirejs-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>optimize</goal>
</goals>
</execution>
</executions>
<configuration>
<configFile>${basedir}/src/main/requirejs/app.build.js</configFile>
<optimizerFile>${basedir}/src/main/requirejs/r.js</optimizerFile>
</configuration>
</plugin>
</plugins>
</build>
</project>