pom.xml revision ece5a262d20a50d0abf584d0f7ec73929ede9cfd
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A<!--
2N/A ~ The contents of this file are subject to the terms of the Common Development and
2N/A ~ Distribution License (the License). You may not use this file except in compliance with the
2N/A ~ License.
2N/A ~
2N/A ~ You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
2N/A ~ specific language governing permission and limitations under the License.
2N/A ~
2N/A ~ When distributing Covered Software, include this CDDL Header Notice in each file and include
2N/A ~ the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
2N/A ~ Header, with the fields enclosed by brackets [] replaced by your own identifying
2N/A ~ information: "Portions copyright [year] [name of copyright owner]".
2N/A ~
2N/A ~ Copyright 2014-2015 ForgeRock AS.
2N/A -->
2N/A
2N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A <name>OpenAM Scripting</name>
2N/A <description>Scripting support for OpenAM auth modules</description>
2N/A <artifactId>openam-scripting</artifactId>
2N/A <packaging>jar</packaging>
2N/A
2N/A <parent>
2N/A <artifactId>openam</artifactId>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <version>13.0.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <dependencies>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>forgerock-guice-core</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>forgerock-util</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-shared</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-core</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-http-client</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.mozilla</groupId>
2N/A <artifactId>rhino</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.codehaus.groovy</groupId>
2N/A <artifactId>groovy-jsr223</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.codehaus.groovy</groupId>
2N/A <artifactId>groovy-json</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>org.kohsuke</groupId>
2N/A <artifactId>groovy-sandbox</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.google.inject.extensions</groupId>
2N/A <artifactId>guice-assistedinject</artifactId>
2N/A </dependency>
2N/A
2N/A <!-- Test dependencies -->
2N/A <dependency>
2N/A <groupId>org.testng</groupId>
2N/A <artifactId>testng</artifactId>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.mockito</groupId>
2N/A <artifactId>mockito-all</artifactId>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.easytesting</groupId>
2N/A <artifactId>fest-assert</artifactId>
2N/A <scope>test</scope>
2N/A </dependency>
2N/A
2N/A </dependencies>
2N/A
2N/A <build>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.codehaus.mojo</groupId>
2N/A <artifactId>jslint-maven-plugin</artifactId>
2N/A <configuration>
2N/A <disallowInsecureCharsInRegExp>false</disallowInsecureCharsInRegExp>
2N/A <assumeConsoleAlertEtc>true</assumeConsoleAlertEtc>
2N/A <!-- variables bound by rhino -->
2N/A <predefinedVars>logger,idRepository,username,authState,FAILED,SUCCESS,clientScriptOutputData,
2N/A sharedState,fontDetector,output,autoSubmitDelay,submit</predefinedVars>
2N/A <excludes>
2N/A <exclude>**/authentication-server-side.js</exclude>
2N/A </excludes>
2N/A </configuration>
2N/A <executions>
2N/A <execution>
2N/A <phase>package</phase>
2N/A <goals>
2N/A <goal>jslint</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>com.github.searls</groupId>
2N/A <artifactId>jasmine-maven-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <goals>
2N/A <goal>test</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A <configuration>
2N/A <jsSrcDir>${project.basedir}${file.separator}src${file.separator}main${file.separator}js</jsSrcDir>
2N/A <jsTestSrcDir>${project.basedir}${file.separator}src${file.separator}test${file.separator}js</jsTestSrcDir>
2N/A <preloadSources>
2N/A <source>am-binding-mocks.js</source>
2N/A </preloadSources>
2N/A <sourceExcludes>
2N/A <sourceExclude>**/fontdetector.js</sourceExclude>
2N/A <sourceExclude>**/authentication-server-side.js</sourceExclude>
2N/A </sourceExcludes>
2N/A </configuration>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.forgerock.maven.plugins</groupId>
2N/A <artifactId>build-helper-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>inject-content</id>
2N/A <phase>prepare-package</phase>
2N/A <goals>
2N/A <goal>inject-content</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A <configuration>
2N/A <injects>
2N/A <inject>
2N/A <contents>
2N/A <content>
2N/A <id>authentication-server-side-javascript</id>
2N/A <file>${project.build.sourceDirectory}/js/authentication-server-side.js</file>
2N/A </content>
2N/A <content>
2N/A <id>fontdetector</id>
2N/A <file>${project.build.sourceDirectory}/js/fontdetector.js</file>
2N/A </content>
2N/A <content>
2N/A <id>deviceIdMatch-client-js</id>
2N/A <file>${project.build.sourceDirectory}/js/deviceIdMatch-client-side.js</file>
2N/A </content>
2N/A <content>
2N/A <id>deviceIdMatch-server-js</id>
2N/A <file>${project.build.sourceDirectory}/js/deviceIdMatch-server-side.js</file>
2N/A </content>
2N/A </contents>
2N/A <destinationFile>${project.build.outputDirectory}/scripting.xml</destinationFile>
2N/A <contentConverter>xml</contentConverter>
2N/A </inject>
2N/A </injects>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A
2N/A</project>