bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major<?xml version="1.0" encoding="UTF-8"?>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major<!--
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major*
87e1cbcd02820f55e1816ee4efe9e9127be22a11James Phillpotts* Copyright 2013-2015 ForgeRock AS.
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major*
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* The contents of this file are subject to the terms
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* of the Common Development and Distribution License
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* (the License). You may not use this file except in
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* compliance with the License.
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major*
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* You can obtain a copy of the License at
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* http://forgerock.org/license/CDDLv1.0.html
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* See the License for the specific language governing
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* permission and limitations under the License.
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major*
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* When distributing Covered Code, include this CDDL
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* Header Notice in each file and include the License file
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* at http://forgerock.org/license/CDDLv1.0.html
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* If applicable, add the following below the CDDL Header,
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* with the fields enclosed by brackets [] replaced by
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* your own identifying information:
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major* "Portions Copyrighted [year] [name of copyright owner]"
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major*
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major-->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major<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">
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <modelVersion>4.0.0</modelVersion>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <!-- Parent Project -->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <parent>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <groupId>org.forgerock.openam</groupId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>openam-federation</artifactId>
5d4589530d1353fdd627ab216a1cdcbcaf6b705ejenkins <version>13.0.0</version>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </parent>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <!-- Component Definition -->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <name>OpenAM IdP Discovery</name>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <description>OpenAM IdP Discovery</description>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>openam-idpdiscovery</artifactId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <packaging>jar</packaging>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <dependencies>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <groupId>javax.servlet</groupId>
87e1cbcd02820f55e1816ee4efe9e9127be22a11James Phillpotts <artifactId>javax.servlet-api</artifactId>
87e1cbcd02820f55e1816ee4efe9e9127be22a11James Phillpotts <scope>provided</scope>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <groupId>org.forgerock.openam</groupId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>openam-shared</artifactId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </dependencies>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major</project>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major