pom.xml revision cc9471594ad3fe9180468fc8d9e01414598776ec
521N/A<?xml version="1.0" encoding="UTF-8"?>
521N/A<!--
521N/A ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
521N/A ~
521N/A ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
521N/A ~
521N/A ~ The contents of this file are subject to the terms
521N/A ~ of the Common Development and Distribution License
521N/A ~ (the License). You may not use this file except in
521N/A ~ compliance with the License.
521N/A ~
521N/A ~ You can obtain a copy of the License at
521N/A ~ http://forgerock.org/license/CDDLv1.0.html
521N/A ~ See the License for the specific language governing
521N/A ~ permission and limitations under the License.
521N/A ~
521N/A ~ When distributing Covered Code, include this CDDL
521N/A ~ Header Notice in each file and include the License file
521N/A ~ at http://forgerock.org/license/CDDLv1.0.html
873N/A ~ If applicable, add the following below the CDDL Header,
521N/A ~ with the fields enclosed by brackets [] replaced by
521N/A ~ your own identifying information:
521N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
521N/A -->
521N/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/xsd/maven-4.0.0.xsd">
3233N/A <modelVersion>4.0.0</modelVersion>
5636N/A <parent>
521N/A <groupId>org.forgerock.openidm</groupId>
521N/A <artifactId>openidm-project</artifactId>
521N/A <version>3.1.0-SNAPSHOT</version>
5636N/A </parent>
5636N/A <artifactId>openidm-audit</artifactId>
521N/A <packaging>bundle</packaging>
2976N/A <name>OpenIDM Audit Bundle</name>
2976N/A <description>This bundle ...</description>
536N/A
521N/A <dependencies>
2976N/A <dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>script-common</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-enhanced-config</artifactId>
<version>${openidm.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-smartevent</artifactId>
<version>${openidm.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-core</artifactId>
<version>${openidm.version}</version>
</dependency>
<dependency>
<groupId>net.sf.supercsv</groupId>
<artifactId>super-csv</artifactId>
<version>2.1.0</version>
</dependency>
<!-- Provided OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>script-javascript</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>