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