<?xml version="1.0" encoding="UTF-8"?>
|
<!--
|
! CDDL HEADER START
|
!
|
! The contents of this file are subject to the terms of the
|
! Common Development and Distribution License, Version 1.0 only
|
! (the "License"). You may not use this file except in compliance
|
! with the License.
|
!
|
! You can obtain a copy of the license at
|
! trunk/opends/resource/legal-notices/CDDLv1_0.txt
|
! or http://forgerock.org/license/CDDLv1.0.html.
|
! See the License for the specific language governing permissions
|
! and limitations under the License.
|
!
|
! When distributing Covered Code, include this CDDL HEADER in each
|
! file and include the License file at
|
! trunk/opends/resource/legal-notices/CDDLv1_0.txt. If applicable,
|
! add the following below this CDDL HEADER, with the fields enclosed
|
! by brackets "[]" replaced with your own identifying information:
|
! Portions Copyright [yyyy] [name of copyright owner]
|
!
|
! CDDL HEADER END
|
!
|
! Copyright 2011 ForgeRock AS
|
!
|
-->
|
<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">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>org.opendj</groupId>
|
<artifactId>opendj-project</artifactId>
|
<version>3.0-SNAPSHOT</version>
|
<packaging>pom</packaging>
|
<name>OpenDJ Project</name>
|
<description>
|
OpenDJ is a new LDAPv3 compliant directory service, developed for the Java platform, providing a high performance, highly available and secure store for the identities managed by enterprises.
|
</description>
|
<url>http://www.opendj.org/</url>
|
<issueManagement>
|
<system>Jira</system>
|
<url>https://bugster.forgerock.org/jira/browse/OPENDJ</url>
|
</issueManagement>
|
<mailingLists>
|
<mailingList>
|
<name>OpenDJ Users Mailing List</name>
|
<archive>http://lists.forgerock.org/pipermail/opendj/</archive>
|
<post>opendj@forgerock.org</post>
|
</mailingList>
|
<mailingList>
|
<name>OpenDJ Developers Mailing List</name>
|
<archive>http://lists.forgerock.org/pipermail/opendj-dev/</archive>
|
<post>opendj-dev@forgerock.org</post>
|
</mailingList>
|
</mailingLists>
|
<licenses>
|
<license>
|
<name>CDDL</name>
|
<url>http://www.opensource.org/licenses/cddl1.php</url>
|
</license>
|
</licenses>
|
<scm>
|
<url>https://svn.forgerock.org/opendj/trunk/opendj3/</url>
|
<connection>scm:svn:https://svn.forgerock.org/opendj/trunk/opendj3/</connection>
|
<developerConnection>scm:svn:https://svn.forgerock.org/opendj/trunk/opendj3/</developerConnection>
|
<tag>HEAD</tag>
|
</scm>
|
<organization>
|
<name>ForgeRock</name>
|
<url>http://www.forgerock.com/</url>
|
</organization>
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</properties>
|
<modules>
|
<module>opendj-build-tools</module>
|
<module>opendj-modules</module>
|
</modules>
|
<build>
|
<plugins>
|
<plugin>
|
<inherited>true</inherited>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.6</source>
|
<target>1.6</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
<repositories>
|
<repository>
|
<id>glassfish-maven2-repository.dev.java.net</id>
|
<name>Java.net Maven 2 Repository for GlassFish</name>
|
<url>http://download.java.net/maven/glassfish/</url>
|
</repository>
|
</repositories>
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.testng</groupId>
|
<artifactId>testng</artifactId>
|
<version>5.14.2</version>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
</project>
|