5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A ! CDDL HEADER START
5394N/A !
5394N/A ! The contents of this file are subject to the terms of the
5394N/A ! Common Development and Distribution License, Version 1.0 only
5394N/A ! (the "License"). You may not use this file except in compliance
5394N/A ! with the License.
5394N/A !
5394N/A ! You can obtain a copy of the license at
5394N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt
5394N/A ! or http://forgerock.org/license/CDDLv1.0.html.
5394N/A ! See the License for the specific language governing permissions
5394N/A ! and limitations under the License.
5394N/A !
5394N/A ! When distributing Covered Code, include this CDDL HEADER in each
5394N/A ! file and include the License file at
5394N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable,
5394N/A ! add the following below this CDDL HEADER, with the fields enclosed
5394N/A ! by brackets "[]" replaced with your own identifying information:
5394N/A ! Portions Copyright [yyyy] [name of copyright owner]
5394N/A !
5394N/A ! CDDL HEADER END
5394N/A !
6238N/A ! Copyright 2011-2013 ForgeRock AS
5394N/A !
5394N/A-->
5394N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5394N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5394N/A
5394N/A <!-- This is Maven build file is just a hack in order to leverage
5394N/A Maven's site generation capabilities. It duplicates version information,
5394N/A and the Ant build is not split into phases: we just do it in one single
5394N/A blast during the compile phase -->
5394N/A
5394N/A <modelVersion>4.0.0</modelVersion>
5394N/A <parent>
5394N/A <groupId>org.forgerock.opendj</groupId>
5394N/A <artifactId>opendj-project</artifactId>
6365N/A <version>2.6.0</version>
5394N/A </parent>
5394N/A <artifactId>opendj-server</artifactId>
5394N/A <packaging>pom</packaging>
5394N/A <name>OpenDJ Directory Server</name>
6368N/A <version>2.6.0</version>
5394N/A <description>
5394N/A OpenDJ is a new LDAPv3 compliant directory service, developed for the Java
5394N/A platform, providing a high performance, highly available and secure store
5394N/A for the identities managed by enterprises.
5394N/A </description>
5714N/A <inceptionYear>2006</inceptionYear>
5394N/A <scm>
6368N/A <url>https://svn.forgerock.org/opendj/tags/2.6.0</url>
6368N/A <connection>scm:svn:https://svn.forgerock.org/opendj/tags/2.6.0</connection>
6368N/A <developerConnection>scm:svn:https://svn.forgerock.org/opendj/tags/2.6.0</developerConnection>
5394N/A <tag>HEAD</tag>
5394N/A </scm>
5394N/A <ciManagement>
5394N/A <system>jenkins</system>
6365N/A <url>http://builds.forgerock.org/job/OpenDJ%20-%20branch%202.6</url>
5394N/A <notifiers>
5394N/A <notifier>
5394N/A <type>mail</type>
5394N/A <sendOnError>true</sendOnError>
5394N/A <sendOnFailure>true</sendOnFailure>
5394N/A <sendOnSuccess>false</sendOnSuccess>
5394N/A <sendOnWarning>false</sendOnWarning>
5394N/A <address>opendj-dev@forgerock.org</address>
5394N/A </notifier>
5394N/A </notifiers>
5394N/A </ciManagement>
6238N/A
5947N/A <repositories>
5947N/A <repository>
5947N/A <id>forgerock-staging-repository</id>
5947N/A <name>ForgeRock Release Repository</name>
5947N/A <url>http://maven.forgerock.org/repo/releases</url>
5947N/A <snapshots>
5947N/A <enabled>false</enabled>
5947N/A </snapshots>
5947N/A </repository>
5947N/A <repository>
5947N/A <id>forgerock-snapshots-repository</id>
5947N/A <name>ForgeRock Snapshot Repository</name>
5947N/A <url>http://maven.forgerock.org/repo/snapshots</url>
5947N/A <releases>
5947N/A <enabled>false</enabled>
5947N/A </releases>
5947N/A </repository>
5947N/A </repositories>
5947N/A
5394N/A <properties>
5394N/A <ant.home>ext/ant</ant.home>
5395N/A <BUILD_NUMBER>0</BUILD_NUMBER>
5394N/A </properties>
5394N/A <build>
5394N/A <directory>build</directory>
5394N/A <plugins>
5394N/A <plugin>
5394N/A <artifactId>maven-antrun-plugin</artifactId>
5947N/A <inherited>false</inherited>
5394N/A <executions>
5394N/A <execution>
5394N/A <id>clean</id>
5394N/A <phase>clean</phase>
5394N/A <goals>
5394N/A <goal>run</goal>
5394N/A </goals>
5394N/A <configuration>
5394N/A <target>
5394N/A <ant target="clean" />
5394N/A </target>
5394N/A </configuration>
5394N/A </execution>
5394N/A <execution>
5394N/A <id>compile</id>
5394N/A <phase>compile</phase>
5394N/A <goals>
5394N/A <goal>run</goal>
5394N/A </goals>
5394N/A <configuration>
5394N/A <target>
5394N/A <!-- We need to significantly refactor build.xml in order
5394N/A to split this up any more -->
5457N/A <ant target="precommit" />
5394N/A </target>
5394N/A </configuration>
5394N/A </execution>
5423N/A <execution>
5947N/A <id>generate-log-reference</id>
5947N/A <phase>compile</phase>
5947N/A <goals>
5947N/A <goal>run</goal>
5947N/A </goals>
5947N/A <configuration>
5947N/A <target>
5947N/A <ant target="generateLogReference" />
5947N/A </target>
5947N/A </configuration>
5947N/A </execution>
5947N/A <execution>
5443N/A <id>generate-docs</id>
5423N/A <phase>pre-site</phase>
5423N/A <goals>
5454N/A <goal>run</goal>
5423N/A </goals>
5423N/A <configuration>
5454N/A <target>
5454N/A <ant target="javadoc" />
5454N/A <ant target="configguide" />
5454N/A </target>
5423N/A </configuration>
5423N/A </execution>
5423N/A <execution>
5443N/A <id>cp-generated-docs</id>
5443N/A <phase>site</phase>
5423N/A <goals>
5423N/A <goal>run</goal>
5423N/A </goals>
5423N/A <configuration>
5423N/A <target>
5423N/A <copy todir="build/site/configref">
5423N/A <fileset dir="build/docgen/configuration_guide/" />
5423N/A </copy>
5443N/A <copy todir="build/site/javadoc">
5443N/A <fileset dir="build/javadoc/" />
5443N/A </copy>
5423N/A </target>
5423N/A </configuration>
5423N/A </execution>
5394N/A </executions>
5394N/A </plugin>
5394N/A <plugin>
5454N/A <groupId>org.codehaus.mojo</groupId>
5454N/A <artifactId>build-helper-maven-plugin</artifactId>
5454N/A <version>1.7</version>
5394N/A <executions>
5394N/A <execution>
5454N/A <id>parse-version</id>
5454N/A <goals>
5454N/A <goal>parse-version</goal>
5454N/A </goals>
5454N/A </execution>
5454N/A <execution>
5454N/A <id>attach-artifacts</id>
5394N/A <phase>package</phase>
5394N/A <goals>
5454N/A <goal>attach-artifact</goal>
5394N/A </goals>
5394N/A <configuration>
5454N/A <artifacts>
5454N/A <artifact>
5454N/A <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.zip</file>
5454N/A <type>zip</type>
5454N/A </artifact>
5454N/A <artifact>
5752N/A <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}-DSML.war</file>
5752N/A <type>war</type>
5752N/A </artifact>
5752N/A <artifact>
5454N/A <file>build/package/OpenDJ-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}/lib/OpenDJ.jar</file>
5454N/A <type>jar</type>
5454N/A </artifact>
5454N/A </artifacts>
5394N/A </configuration>
5394N/A </execution>
5394N/A </executions>
5394N/A </plugin>
5751N/A <plugin>
5751N/A <groupId>org.apache.maven.plugins</groupId>
5751N/A <artifactId>maven-release-plugin</artifactId>
5751N/A <configuration>
5751N/A <!-- Required for release:perform: the parent pom specifies a value
5751N/A for "arguments" in the plugin configuration. This prevents
5751N/A command line setting of the option. -->
5751N/A <arguments>-Penforce -Dopendmk.lib.dir=${opendmk.lib.dir}</arguments>
5751N/A </configuration>
5751N/A </plugin>
5394N/A </plugins>
5394N/A </build>
5474N/A <profiles>
5474N/A <profile>
5474N/A <id>tests-only</id>
5474N/A <build>
5474N/A <plugins>
5474N/A <plugin>
5474N/A <artifactId>maven-antrun-plugin</artifactId>
5947N/A <inherited>false</inherited>
5474N/A <executions>
5474N/A <execution>
5474N/A <id>compile</id>
5474N/A <phase>compile</phase>
5474N/A <goals>
5474N/A <goal>run</goal>
5474N/A </goals>
5474N/A <configuration>
5474N/A <target>
5474N/A <!-- We need to significantly refactor build.xml in order
5474N/A to split this up any more -->
5474N/A <ant target="test" />
5474N/A </target>
5474N/A </configuration>
5474N/A </execution>
5474N/A </executions>
5474N/A </plugin>
5474N/A </plugins>
5474N/A </build>
5474N/A </profile>
5474N/A </profiles>
5947N/A <modules>
5947N/A <module>opendj-log-ref</module>
5947N/A </modules>
5394N/A</project>