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