pom.xml revision 0f654b89b1500dc8bfafe8d7ca069f0863051135
0295f63b67bb09cd4d00dd1d9c2238c37beefed8Mark Andrews<?xml version="1.0" encoding="UTF-8"?>
0295f63b67bb09cd4d00dd1d9c2238c37beefed8Mark Andrews<!--
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ The contents of this file are subject to the terms of the Common Development and
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ Distribution License (the License). You may not use this file except in compliance with the
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ License.
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ specific language governing permission and limitations under the License.
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ When distributing Covered Software, include this CDDL Header Notice in each file and include
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ Header, with the fields enclosed by brackets [] replaced by your own identifying
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ information: "Portions copyright [year] [name of copyright owner]".
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~
599a98b25ca10c501bdf3368eab2a2a951130949Mark Andrews ~ Copyright 2014-2015 ForgeRock AS.
0295f63b67bb09cd4d00dd1d9c2238c37beefed8Mark Andrews-->
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington<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">
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <parent>
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <artifactId>openam-audit</artifactId>
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <groupId>org.forgerock.openam</groupId>
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <version>13.0.0-SNAPSHOT</version>
d887c4cc01ab26351269d92aa107b80a2a910b4dMark Andrews </parent>
d887c4cc01ab26351269d92aa107b80a2a910b4dMark Andrews <modelVersion>4.0.0</modelVersion>
d887c4cc01ab26351269d92aa107b80a2a910b4dMark Andrews
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <name>OpenAM Audit Configuration</name>
dcd8bbcc8dd62a79142b35c048ca41ee7e921232Brian Wellington <artifactId>openam-audit-configuration</artifactId>
d887c4cc01ab26351269d92aa107b80a2a910b4dMark Andrews <packaging>jar</packaging>
d887c4cc01ab26351269d92aa107b80a2a910b4dMark Andrews
<properties>
<checkstyleFailOnError>true</checkstyleFailOnError>
</properties>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-audit-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-audit-handler-csv</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-audit-handler-syslog</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-audit-handler-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>