9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington<?xml version="1.0" encoding="UTF-8"?>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington<!--
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 2015-2016 ForgeRock AS.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major-->
7bf512aea50c834dc9c3ef5a0a228059fcc753a5jenkins<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/xsd/maven-4.0.0.xsd">
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <parent>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <artifactId>openam-audit</artifactId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <groupId>org.forgerock.openam</groupId>
2d8eba3efb0ced5c2ab004e5b3e949094747aeb3jenkins <version>14.0.0-SNAPSHOT</version>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington </parent>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <modelVersion>4.0.0</modelVersion>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <name>OpenAM Audit REST</name>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <artifactId>openam-audit-rest</artifactId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington
15f60c5ba586de69e94c6045e9bf91103e924020James Phillpotts <properties>
15f60c5ba586de69e94c6045e9bf91103e924020James Phillpotts <checkstyleFailOnError>true</checkstyleFailOnError>
15f60c5ba586de69e94c6045e9bf91103e924020James Phillpotts </properties>
15f60c5ba586de69e94c6045e9bf91103e924020James Phillpotts
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <dependencies>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <dependency>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <groupId>org.forgerock.commons</groupId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <artifactId>forgerock-audit-core</artifactId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington </dependency>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <dependency>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <groupId>org.forgerock.openam</groupId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington <artifactId>openam-rest</artifactId>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington </dependency>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <dependency>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <groupId>org.forgerock.openam</groupId>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <artifactId>openam-i18n</artifactId>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste </dependency>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <dependency>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <groupId>org.forgerock.openam</groupId>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <artifactId>openam-test-utils</artifactId>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste <scope>test</scope>
130b7188b43ef3557ff86a52b85b159770bc1f81Jaco Jooste </dependency>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington </dependencies>
9f92250fcac0f79bcde31080a38940cb4ebecda8Phill Cunnington
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major</project>