6210N/A<?xml version="1.0" encoding="UTF-8"?>
6210N/A<!--
6210N/A ! CDDL HEADER START
6210N/A !
6210N/A ! The contents of this file are subject to the terms of the
6210N/A ! Common Development and Distribution License, Version 1.0 only
6210N/A ! (the "License"). You may not use this file except in compliance
6210N/A ! with the License.
6210N/A !
6210N/A ! You can obtain a copy of the license at
6210N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt
6210N/A ! or http://forgerock.org/license/CDDLv1.0.html.
6210N/A ! See the License for the specific language governing permissions
6210N/A ! and limitations under the License.
6210N/A !
6210N/A ! When distributing Covered Code, include this CDDL HEADER in each
6210N/A ! file and include the License file at
6210N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable,
6210N/A ! add the following below this CDDL HEADER, with the fields enclosed
6210N/A ! by brackets "[]" replaced with your own identifying information:
6210N/A ! Portions Copyright [yyyy] [name of copyright owner]
6210N/A !
6210N/A ! CDDL HEADER END
6210N/A !
6210N/A ! Copyright 2013 ForgeRock AS
6210N/A !
6210N/A-->
6210N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6210N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6210N/A
6210N/A <modelVersion>4.0.0</modelVersion>
6210N/A <parent>
6210N/A <groupId>org.forgerock.opendj</groupId>
6210N/A <artifactId>opendj-project</artifactId>
6352N/A <version>2.6.0</version>
6210N/A </parent>
6210N/A <artifactId>opendj-server</artifactId>
6402N/A <version>2.6.0</version>
6210N/A <name>OpenDJ Directory Server</name>
6210N/A <description>
6210N/A OpenDJ is a new LDAPv3 compliant directory service, developed for the Java
6210N/A platform, providing a high performance, highly available and secure store
6210N/A for the identities managed by enterprises.
6210N/A </description>
6210N/A <inceptionYear>2006</inceptionYear>
6210N/A <scm>
6402N/A <url>https://svn.forgerock.org/opendj/tags/2.6.0</url>
6402N/A <connection>scm:svn:https://svn.forgerock.org/opendj/tags/2.6.0</connection>
6402N/A <developerConnection>scm:svn:https://svn.forgerock.org/opendj/tags/2.6.0</developerConnection>
6210N/A <tag>HEAD</tag>
6210N/A </scm>
6210N/A <ciManagement>
6210N/A <system>jenkins</system>
6399N/A <url>http://builds.forgerock.org/job/OpenDJ%20-%20branch%202.6</url>
6210N/A <notifiers>
6210N/A <notifier>
6210N/A <type>mail</type>
6210N/A <sendOnError>true</sendOnError>
6210N/A <sendOnFailure>true</sendOnFailure>
6210N/A <sendOnSuccess>false</sendOnSuccess>
6210N/A <sendOnWarning>false</sendOnWarning>
6210N/A <address>opendj-dev@forgerock.org</address>
6210N/A </notifier>
6210N/A </notifiers>
6210N/A </ciManagement>
6210N/A
6210N/A <repositories>
6210N/A <repository>
6210N/A <id>forgerock-staging-repository</id>
6210N/A <name>ForgeRock Release Repository</name>
6210N/A <url>http://maven.forgerock.org/repo/releases</url>
6210N/A <snapshots>
6210N/A <enabled>false</enabled>
6210N/A </snapshots>
6210N/A </repository>
6210N/A <repository>
6210N/A <id>forgerock-snapshots-repository</id>
6210N/A <name>ForgeRock Snapshot Repository</name>
6210N/A <url>http://maven.forgerock.org/repo/snapshots</url>
6210N/A <releases>
6210N/A <enabled>false</enabled>
6210N/A </releases>
6210N/A </repository>
6210N/A <repository>
6210N/A <id>oracle</id>
6210N/A <name>Oracle Release Repository</name>
6210N/A <url>http://download.oracle.com/maven</url>
6210N/A <snapshots>
6210N/A <enabled>false</enabled>
6210N/A </snapshots>
6210N/A </repository>
6210N/A </repositories>
6210N/A
6210N/A <properties>
6210N/A <ant.home>ext/ant</ant.home>
6210N/A <generatedSourcesDirectory>target/generated-sources</generatedSourcesDirectory>
6210N/A </properties>
6210N/A
6210N/A <dependencies>
6210N/A <dependency>
6210N/A <groupId>javax.mail</groupId>
6210N/A <artifactId>mail</artifactId>
6210N/A <version>1.4.5</version>
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>javax.servlet</groupId>
6210N/A <artifactId>javax.servlet-api</artifactId>
6210N/A <version>[3.1-b02]</version>
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>com.sleepycat</groupId>
6210N/A <artifactId>je</artifactId>
6210N/A <version>5.0.73</version>
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>org.forgerock.opendj</groupId>
6210N/A <artifactId>opendj-rest2ldap-servlet</artifactId>
6352N/A <version>${parent.version}</version>
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>org.forgerock.opendj</groupId>
6210N/A <artifactId>opendj-server2x-adapter</artifactId>
6352N/A <version>${parent.version}</version>
6210N/A <!--exclude module="opendj-server"/-->
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>org.glassfish.grizzly</groupId>
6210N/A <artifactId>grizzly-http-servlet</artifactId>
6246N/A <version>${grizzlyFrameworkVersion}</version>
6210N/A <!--exclude module="javax.servlet-api" /-->
6210N/A </dependency>
6210N/A
6210N/A <dependency>
6210N/A <!-- this is built when we are calling maven-antrun-plugin -->
6210N/A <groupId>org.forgerock.opendj</groupId>
6210N/A <artifactId>build-tools</artifactId>
6210N/A <version>1.0</version>
6210N/A <scope>system</scope>
6210N/A <systemPath>${user.dir}/build/build-tools/build-tools.jar</systemPath>
6210N/A </dependency>
6210N/A
6210N/A <dependency>
6210N/A <groupId>org.testng</groupId>
6210N/A <artifactId>testng</artifactId>
6210N/A <version>5.7</version>
6210N/A <classifier>jdk15</classifier>
6210N/A <scope>test</scope>
6210N/A <!-- FIXME: We are using a custom built version, but because of this
6210N/A we cannot use test scope, let's find a version that works better
6210N/A <scope>system</scope>
6210N/A <systemPath>${user.dir}/ext/testng/lib/testng-5.7b-jdk15.jar</systemPath-->
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>org.assertj</groupId>
6210N/A <artifactId>assertj-core</artifactId>
6210N/A <version>1.0.0</version>
6210N/A <scope>test</scope>
6210N/A </dependency>
6210N/A <dependency>
6210N/A <groupId>org.mockito</groupId>
6210N/A <artifactId>mockito-core</artifactId>
6210N/A <version>1.9.5</version>
6210N/A <scope>test</scope>
6210N/A </dependency>
6210N/A </dependencies>
6210N/A
6210N/A <build>
6210N/A <sourceDirectory>src/server</sourceDirectory>
6210N/A <resources>
6210N/A <resource>
6210N/A <directory>resource</directory>
6210N/A </resource>
6210N/A </resources>
6210N/A <!--testSourceDirectory>tests/unit-tests-testng</testSourceDirectory>
6210N/A <testResources>
6210N/A <testResource>
6210N/A <directory>tests/unit-tests-testng/resource</directory>
6210N/A </testResource>
6210N/A </testResources-->
6210N/A <!--build>
6210N/A <directory>target</directory>
6210N/A <outputDirectory>target/classes</outputDirectory>
6210N/A <finalName>${artifactId}-${version}</finalName>
6210N/A <testOutputDirectory>target/test-classes</testOutputDirectory>
6210N/A <sourceDirectory>src/main/java</sourceDirectory>
6210N/A <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
6210N/A <testSourceDirectory>src/test/java</testSourceDirectory>
6210N/A <resources>
6210N/A <resource>
6210N/A <directory>src/main/resources</directory>
6210N/A </resource>
6210N/A </resources>
6210N/A <testResources>
6210N/A <testResource>
6210N/A <directory>src/test/resources</directory>
6210N/A </testResource>
6210N/A </testResources>
6210N/A </build-->
6210N/A
6210N/A <plugins>
6210N/A <plugin>
6210N/A <groupId>org.apache.maven.plugins</groupId>
6210N/A <artifactId>maven-compiler-plugin</artifactId>
6210N/A <version>3.1</version>
6210N/A <configuration>
6210N/A <source>1.6</source>
6210N/A <target>1.6</target>
6210N/A <!-- Use <excludes> tag for excluding from production code -->
6210N/A <testExcludes>
6210N/A <exclude>**/snmp/*.java</exclude>
6210N/A </testExcludes>
6210N/A </configuration>
6210N/A </plugin>
6210N/A <!--plugin>
6210N/A <groupId>org.apache.maven.plugins</groupId>
6210N/A <artifactId>maven-surefire-plugin</artifactId>
6210N/A <version>2.14.1</version>
6210N/A <configuration>
6210N/A <suiteXmlFiles>
6210N/A <suiteXmlFile>ext/testng/testng.xml</suiteXmlFile>
6210N/A </suiteXmlFiles>
6210N/A </configuration>
6210N/A </plugin-->
6210N/A <plugin>
6210N/A <groupId>org.apache.maven.plugins</groupId>
6210N/A <artifactId>maven-release-plugin</artifactId>
6210N/A <configuration>
6210N/A <!-- Required for release:perform: the parent pom specifies a value
6210N/A for "arguments" in the plugin configuration. This prevents
6210N/A command line setting of the option. -->
6210N/A <arguments>-Penforce -Dopendmk.lib.dir=${opendmk.lib.dir}</arguments>
6210N/A </configuration>
6210N/A </plugin>
6210N/A <plugin>
6210N/A <artifactId>maven-antrun-plugin</artifactId>
6210N/A <inherited>true</inherited>
6210N/A <executions>
6210N/A <execution>
6210N/A <id>generate-sources</id>
6210N/A <phase>generate-sources</phase>
6210N/A <goals>
6210N/A <goal>run</goal>
6210N/A </goals>
6210N/A <configuration>
6210N/A <target>
6210N/A <property name="absoluteGenSrcDir" location="${user.dir}/${generatedSourcesDirectory}" />
6210N/A <property name="msg.javagen.dir" location="${absoluteGenSrcDir}" />
6210N/A <property name="admin.src.dir" location="${absoluteGenSrcDir}" />
6210N/A <!--property name="snmp.gen.dir" location="${absoluteGenSrcDir}" /-->
6210N/A
6210N/A <ant target="generatesources" inheritAll="true" inheritRefs="true" />
6210N/A </target>
6210N/A </configuration>
6210N/A </execution>
6210N/A </executions>
6210N/A </plugin>
6210N/A <plugin>
6210N/A <groupId>org.codehaus.mojo</groupId>
6210N/A <artifactId>build-helper-maven-plugin</artifactId>
6210N/A <version>1.7</version>
6210N/A <executions>
6210N/A <execution>
6210N/A <phase>generate-sources</phase>
6210N/A <goals><goal>add-source</goal></goals>
6210N/A <configuration>
6210N/A <sources>
6210N/A <source>${generatedSourcesDirectory}</source>
6210N/A <source>src/ads</source>
6210N/A <!--source>src/build-tools</source--><!-- We are using build-tools.jar -->
6210N/A <source>src/guitools</source>
6210N/A <source>src/messages/src</source>
6210N/A <source>src/quicksetup</source>
6210N/A </sources>
6210N/A </configuration>
6210N/A </execution>
6210N/A </executions>
6210N/A </plugin>
6210N/A </plugins>
6210N/A </build>
6210N/A</project>