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