pom.xml revision f96dd8ca2a9b6555a16292887e0ff79b69d2303a
366N/A<?xml version="1.0" encoding="UTF-8"?>
366N/A<!--
366N/A ! CDDL HEADER START
366N/A !
851N/A ! The contents of this file are subject to the terms of the
851N/A ! Common Development and Distribution License, Version 1.0 only
366N/A ! (the "License"). You may not use this file except in compliance
366N/A ! with the License.
366N/A !
366N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
366N/A ! or http://forgerock.org/license/CDDLv1.0.html.
366N/A ! See the License for the specific language governing permissions
366N/A ! and limitations under the License.
366N/A !
366N/A ! When distributing Covered Code, include this CDDL HEADER in each
366N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
366N/A ! If applicable, add the following below this CDDL HEADER, with the
366N/A ! fields enclosed by brackets "[]" replaced with your own identifying
366N/A ! information:
366N/A ! Portions Copyright [yyyy] [name of copyright owner]
366N/A !
366N/A ! CDDL HEADER END
366N/A !
366N/A ! Copyright 2013-2015 ForgeRock AS
366N/A !
366N/A-->
366N/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">
366N/A <modelVersion>4.0.0</modelVersion>
366N/A <parent>
366N/A <artifactId>opendj-server-parent</artifactId>
366N/A <groupId>org.forgerock.opendj</groupId>
366N/A <version>3.0.0-SNAPSHOT</version>
851N/A </parent>
366N/A <artifactId>opendj-server</artifactId>
366N/A <name>OpenDJ Server</name>
366N/A <description>
493N/A OpenDJ LDAP embedded directory server.
366N/A </description>
366N/A <packaging>jar</packaging>
851N/A <properties>
366N/A <!-- Product information properties -->
366N/A <patchFixIds />
366N/A <isDebugBuild>false</isDebugBuild>
366N/A <docHomepageUrl>http://opendj.forgerock.org/</docHomepageUrl>
366N/A <docWikiUrl>http://opendj.forgerock.org/docs.html</docWikiUrl>
366N/A <docGuideRefUrl>http://opendj.forgerock.org/doc/admin-guide/index.html</docGuideRefUrl>
366N/A <docGuideAdminUrl>http://opendj.forgerock.org/doc/admin-guide/index.html</docGuideAdminUrl>
366N/A </properties>
366N/A <dependencies>
366N/A <dependency>
493N/A <groupId>org.forgerock.opendj</groupId>
366N/A <artifactId>opendj-core</artifactId>
366N/A </dependency>
493N/A <dependency>
366N/A <groupId>org.forgerock.opendj</groupId>
366N/A <artifactId>opendj-grizzly</artifactId>
366N/A </dependency>
366N/A <dependency>
366N/A <groupId>org.forgerock.opendj</groupId>
<artifactId>opendj-config</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-util</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>i18n-core</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.opendj</groupId>
<artifactId>opendj-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.forgerock</groupId>
<artifactId>forgerock-build-tools</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.opendj</groupId>
<artifactId>opendj-cli</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>parse-version</id>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Retrieve the SVN revision number and the build timestamp -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>generate-buildnumber</id>
<goals>
<goal>create</goal>
</goals>
<configuration>
<useLastCommittedRevision>true</useLastCommittedRevision>
<buildNumberPropertyName>buildRevision</buildNumberPropertyName>
<revisionOnScmFailure>-1</revisionOnScmFailure>
</configuration>
</execution>
<execution>
<id>generate-timestamp</id>
<goals>
<goal>create</goal>
</goals>
<configuration>
<format>{0,date,yyyyMMddHHmmss}</format>
<items>
<item>timestamp</item>
</items>
<buildNumberPropertyName>buildDateTime</buildNumberPropertyName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.forgerock.commons</groupId>
<artifactId>i18n-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate-messages</goal>
</goals>
<configuration>
<messageFiles>
<!-- <messageFile>com/forgerock/opendj/grizzly/grizzly.properties</messageFile> -->
</messageFiles>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
<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>