From f55d89eca7a5a3c8dc511cd04dbbed9c164a8324 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 11 Feb 2011 19:32:25 +0000
Subject: [PATCH] Initial commit of Mavenized OpenDJ SDK
---
opendj3/pom.xml | 90 +++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 86 insertions(+), 4 deletions(-)
diff --git a/opendj3/pom.xml b/opendj3/pom.xml
index abde384..552cdd3 100644
--- a/opendj3/pom.xml
+++ b/opendj3/pom.xml
@@ -1,3 +1,30 @@
+<?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>
@@ -5,15 +32,70 @@
<artifactId>opendj-project</artifactId>
<version>3.0-SNAPSHOT</version>
<packaging>pom</packaging>
- <name>opendj-project</name>
+ <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.
+ 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>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.14.2</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
</project>
--
Gitblit v1.10.0