02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith<?xml version="1.0" encoding="UTF-8"?>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith<!--
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * The contents of this file are subject to the terms of the Common Development and
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Distribution License (the License). You may not use this file except in compliance with the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * specific language governing permission and limitations under the License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * When distributing Covered Software, include this CDDL Header Notice in each file and include
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Header, with the fields enclosed by brackets [] replaced by your own identifying
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * information: "Portions copyright [year] [name of copyright owner]".
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Copyright 2013-2016 ForgeRock AS.
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith-->
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith<project xmlns="http://maven.apache.org/POM/4.0.0"
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <modelVersion>4.0.0</modelVersion>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <groupId>org.forgerock.openam.examples</groupId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <artifactId>custom-authentication-module</artifactId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <version>14.0.0-SNAPSHOT</version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <packaging>jar</packaging>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith
fba815ec883afa7d9675096f5266e43b224bbec4Peter Major <name>OpenAM Custom Authentication Module</name>
fba815ec883afa7d9675096f5266e43b224bbec4Peter Major
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <properties>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <openam.version>14.0.0-SNAPSHOT</openam.version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </properties>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <repositories>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <repository>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <id>forgerock-releases</id>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <url>http://maven.forgerock.org/repo/releases</url>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </repository>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <repository>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <id>forgerock-snapshots</id>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <url>http://maven.forgerock.org/repo/snapshots</url>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </repository>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </repositories>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <dependencies>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <groupId>org.forgerock.openam</groupId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <artifactId>openam-core</artifactId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <version>${openam.version}</version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <groupId>org.forgerock.openam</groupId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <artifactId>openam-shared</artifactId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <version>${openam.version}</version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <groupId>javax.servlet</groupId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <artifactId>servlet-api</artifactId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <version>2.5</version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <scope>provided</scope>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </dependency>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </dependencies>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <build>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <plugins>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <plugin>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <groupId>org.apache.maven.plugins</groupId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <artifactId>maven-compiler-plugin</artifactId>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <version>3.0</version>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <configuration>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <source>1.6</source>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith <target>1.6</target>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </configuration>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </plugin>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </plugins>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith </build>
02f0b2e7f8de0ced8808786319c1a21684f590dcDavid Goldsmith</project>