bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major<?xml version="1.0" encoding="UTF-8"?>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major<!--
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.
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>
2d8eba3efb0ced5c2ab004e5b3e949094747aeb3jenkins <version>14.0.0-SNAPSHOT</version>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </parent>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <!-- Component Definition -->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <name>OpenAM IdP Discovery WAR</name>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <description>OpenAM IdP Discovery WAR</description>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>openam-idpdiscovery-war</artifactId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <packaging>war</packaging>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <build>
d7acdbdfb47e51f588dbf7bafc4706000a44aca5Jonathan Scudder <finalName>IDPDiscovery-${project.version}</finalName>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <plugins>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <plugin>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <groupId>org.apache.maven.plugins</groupId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>maven-war-plugin</artifactId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <configuration>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <archive>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <manifestEntries>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Specification-Title>OpenAM IdP Discovery WAR</Specification-Title>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Specification-Vendor>ForgeRock</Specification-Vendor>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Implementation-Title>OpenAM IdP Discovery WAR</Implementation-Title>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Implementation-Vendor>ForgeRock</Implementation-Vendor>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <Build-Time>${maven.build.timestamp}</Build-Time>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </manifestEntries>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </archive>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtensions>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <!-- Exclude any binary files based upon File Types. -->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>bin</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>bkf</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>bmp</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>bz2</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>deb</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>dll</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>dmg</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>ear</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>exe</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>gif</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>gz</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>gzip</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>ico</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>jar</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>jks</nonFilteredFileExtension>
f36d7fc719bcbc9aba272b40a4723a24a81d6e0cAndrew Forrest <nonFilteredFileExtension>jceks</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>jpg</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>jpeg</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>lz</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>png</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>rar</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>rpm</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>tar</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>tgz</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>war</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>zip</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <nonFilteredFileExtension>7z</nonFilteredFileExtension>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <!-- See: http://en.wikipedia.org/wiki/List_of_file_formats -->
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </nonFilteredFileExtensions>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </configuration>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </plugin>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </plugins>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </build>
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 <dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <groupId>org.forgerock.openam</groupId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major <artifactId>openam-idpdiscovery</artifactId>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </dependency>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major </dependencies>
bb3c4ce56e9a932b502869e499389b6c467e1f9ePeter Major</project>