pom.xml revision 47296dcccca008c937a201c9301a3b231dd3b47f
3832N/A<?xml version="1.0" encoding="UTF-8"?>
3832N/A<!--
3832N/A ! CDDL HEADER START
3832N/A !
3832N/A ! The contents of this file are subject to the terms of the
3832N/A ! Common Development and Distribution License, Version 1.0 only
3832N/A ! (the "License"). You may not use this file except in compliance
3832N/A ! with the License.
3832N/A !
3832N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
3832N/A ! or http://forgerock.org/license/CDDLv1.0.html.
3832N/A ! See the License for the specific language governing permissions
3832N/A ! and limitations under the License.
3832N/A !
3832N/A ! When distributing Covered Code, include this CDDL HEADER in each
3832N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
3832N/A ! If applicable, add the following below this CDDL HEADER, with the
3832N/A ! fields enclosed by brackets "[]" replaced with your own identifying
3832N/A ! information:
3832N/A ! Portions Copyright [yyyy] [name of copyright owner]
3832N/A !
3832N/A ! CDDL HEADER END
3832N/A !
3832N/A ! Copyright 2011-2012 ForgeRock AS
5061N/A !
3832N/A-->
3832N/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">
4458N/A <modelVersion>4.0.0</modelVersion>
3832N/A <parent>
3832N/A <artifactId>opendj-project</artifactId>
3832N/A <groupId>org.forgerock.opendj</groupId>
3832N/A <version>2.7.0-SNAPSHOT</version>
4692N/A </parent>
4692N/A <artifactId>opendj-core</artifactId>
4776N/A <name>OpenDJ Core APIs</name>
4776N/A <description>
4776N/A This module provides the core APIs required for implementing LDAP Directory
4776N/A client and server applications. Unlike the SDK this module does not
4776N/A include a default network transport which must be obtained separately.
4692N/A </description>
4692N/A <packaging>bundle</packaging>
4692N/A <dependencies>
4692N/A <dependency>
4776N/A <groupId>org.forgerock.commons</groupId>
4776N/A <artifactId>i18n-core</artifactId>
4776N/A </dependency>
4692N/A <dependency>
4692N/A <groupId>org.slf4j</groupId>
4692N/A <artifactId>slf4j-api</artifactId>
4692N/A </dependency>
4692N/A <dependency>
4692N/A <groupId>org.forgerock</groupId>
3832N/A <artifactId>forgerock-build-tools</artifactId>
3832N/A <version>${forgerockBuildToolsVersion}</version>
5061N/A <scope>test</scope>
3832N/A </dependency>
5061N/A </dependencies>
3832N/A <properties>
4458N/A <opendj.osgi.import>
4458N/A com.sun.security.auth*;resolution:=optional,
4458N/A *
4458N/A </opendj.osgi.import>
4458N/A </properties>
4458N/A <build>
4458N/A <plugins>
4458N/A <plugin>
3832N/A <groupId>org.forgerock.commons</groupId>
4458N/A <artifactId>i18n-maven-plugin</artifactId>
3832N/A <executions>
3832N/A <execution>
4458N/A <phase>generate-sources</phase>
3832N/A <goals>
5061N/A <goal>generate-messages</goal>
3832N/A </goals>
4458N/A <configuration>
4458N/A <messageFiles>
4458N/A <messageFile>com/forgerock/opendj/ldap/core.properties</messageFile>
5061N/A </messageFiles>
5061N/A </configuration>
5061N/A </execution>
5061N/A </executions>
5061N/A </plugin>
5061N/A <plugin>
5061N/A <groupId>org.apache.felix</groupId>
5061N/A <artifactId>maven-bundle-plugin</artifactId>
5061N/A <extensions>true</extensions>
4458N/A </plugin>
4458N/A <plugin>
3832N/A <groupId>org.apache.maven.plugins</groupId>
4458N/A <artifactId>maven-surefire-plugin</artifactId>
3832N/A </plugin>
3832N/A <plugin>
3832N/A <groupId>org.apache.maven.plugins</groupId>
3832N/A <artifactId>maven-source-plugin</artifactId>
3832N/A </plugin>
3832N/A <plugin>
3832N/A <groupId>org.apache.maven.plugins</groupId>
4458N/A <artifactId>maven-jar-plugin</artifactId>
4458N/A <version>2.4</version>
4458N/A <executions>
4458N/A <execution>
4458N/A <goals>
4458N/A <goal>test-jar</goal>
4458N/A </goals>
4458N/A </execution>
4458N/A </executions>
4458N/A </plugin>
3832N/A </plugins>
3832N/A </build>
3832N/A <reporting>
3832N/A <plugins>
4259N/A <plugin>
3832N/A <groupId>org.apache.maven.plugins</groupId>
3832N/A <artifactId>maven-project-info-reports-plugin</artifactId>
5065N/A <reportSets>
3832N/A <reportSet>
4714N/A <reports>
3832N/A <report>dependencies</report>
3832N/A </reports>
3832N/A </reportSet>
3832N/A </reportSets>
3832N/A </plugin>
4714N/A <plugin>
3832N/A <groupId>org.apache.maven.plugins</groupId>
4714N/A <artifactId>maven-javadoc-plugin</artifactId>
3832N/A <configuration>
3832N/A <links>
3832N/A <link>http://commons.forgerock.org/i18n-framework/i18n-core/apidocs</link>
5065N/A </links>
4458N/A </configuration>
5065N/A </plugin>
3832N/A </plugins>
3832N/A </reporting>
3832N/A</project>
4458N/A