pom.xml revision 4d668a74e90bd0431c1acb4c5a3df71f57d0aac7
0N/A<?xml version="1.0" encoding="UTF-8"?>
0N/A<!--
0N/A* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A*
0N/A* Copyright (c) 2011-2014 ForgeRock AS. All Rights Reserved
0N/A*
0N/A* The contents of this file are subject to the terms
0N/A* of the Common Development and Distribution License
0N/A* (the License). You may not use this file except in
0N/A* compliance with the License.
0N/A*
0N/A* You can obtain a copy of the License at
0N/A* http://forgerock.org/license/CDDLv1.0.html
0N/A* See the License for the specific language governing
0N/A* permission and limitations under the License.
0N/A*
0N/A* When distributing Covered Code, include this CDDL
0N/A* Header Notice in each file and include the License file
873N/A* at http://forgerock.org/license/CDDLv1.0.html
0N/A* If applicable, add the following below the CDDL Header,
0N/A* with the fields enclosed by brackets [] replaced by
0N/A* your own identifying information:
0N/A* "Portions Copyrighted [year] [name of copyright owner]"
0N/A*
3231N/A-->
0N/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/maven-v4_0_0.xsd">
0N/A <modelVersion>4.0.0</modelVersion>
0N/A
0N/A <!-- Parent Project -->
0N/A <parent>
1617N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam</artifactId>
0N/A <version>13.0.0-RC1</version>
0N/A </parent>
0N/A
0N/A <!-- Component Definition -->
0N/A <name>OpenAM Authentication</name>
0N/A <description>OpenAM Authentication Modules</description>
0N/A <artifactId>openam-authentication</artifactId>
2086N/A <packaging>pom</packaging>
2086N/A
0N/A <!-- Child Modules -->
1280N/A <modules>
2086N/A <module>openam-auth-common</module>
2086N/A <module>openam-auth-ad</module>
0N/A <module>openam-auth-anonymous</module>
0N/A <module>openam-auth-adaptive</module>
0N/A <module>openam-auth-application</module>
0N/A <module>openam-auth-cert</module>
0N/A <module>openam-auth-datastore</module>
0N/A <module>openam-auth-hotp</module>
0N/A <module>openam-auth-httpbasic</module>
0N/A <module>openam-auth-jdbc</module>
0N/A <module>openam-auth-ldap</module>
0N/A <module>openam-auth-membership</module>
1617N/A <module>openam-auth-msisdn</module>
0N/A <module>openam-auth-nt</module>
0N/A <module>openam-auth-oath</module>
0N/A <module>openam-auth-fr-oath</module>
0N/A <module>openam-auth-oauth2</module>
0N/A <module>openam-auth-radius</module>
0N/A <module>openam-auth-windowsdesktopsso</module>
0N/A <module>openam-auth-persistentcookie</module>
0N/A <module>deviceprint</module>
0N/A <module>openam-auth-oidc</module>
0N/A <module>openam-auth-scripted</module>
0N/A <module>openam-auth-device-id</module>
0N/A <module>openam-auth-saml2</module>
0N/A </modules>
0N/A
0N/A <profiles>
0N/A <profile>
0N/A <id>release</id>
0N/A <modules>
0N/A <module>openam-auth-securid</module>
0N/A </modules>
0N/A </profile>
0N/A <profile>
0N/A <id>development</id>
0N/A <modules>
0N/A <module>openam-auth-securid</module>
0N/A </modules>
1617N/A </profile>
0N/A </profiles>
1617N/A
0N/A <dependencies>
0N/A <dependency>
0N/A <groupId>org.forgerock.openam</groupId>
0N/A <artifactId>openam-core</artifactId>
0N/A </dependency>
0N/A </dependencies>
2086N/A</project>
2086N/A
0N/A