pom.xml revision 4951001b2e4b8b018450282a0e52ef5c091d4191
0N/A<?xml version="1.0" encoding="UTF-8"?>
1472N/A<!--
0N/A ! CDDL HEADER START
0N/A !
0N/A ! The contents of this file are subject to the terms of the
0N/A ! Common Development and Distribution License, Version 1.0 only
0N/A ! (the "License"). You may not use this file except in compliance
0N/A ! with the License.
0N/A !
0N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
0N/A ! or http://forgerock.org/license/CDDLv1.0.html.
0N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
0N/A !
0N/A ! When distributing Covered Code, include this CDDL HEADER in each
0N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
0N/A ! If applicable, add the following below this CDDL HEADER, with the
0N/A ! fields enclosed by brackets "[]" replaced with your own identifying
1472N/A ! information:
1472N/A ! Portions Copyright [yyyy] [name of copyright owner]
1472N/A !
0N/A ! CDDL HEADER END
0N/A !
0N/A ! Copyright 2013 ForgeRock AS
0N/A !
0N/A-->
0N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
0N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
0N/A <modelVersion>4.0.0</modelVersion>
0N/A <parent>
0N/A <artifactId>opendj-project</artifactId>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <version>3.0.0-SNAPSHOT</version>
0N/A </parent>
0N/A <artifactId>opendj-server</artifactId>
0N/A <name>OpenDJ LDAP Directory Server</name>
0N/A <description>
0N/A This module includes the core functionality of the OpenDJ LDAP Directory Server.
0N/A </description>
0N/A <packaging>jar</packaging>
0N/A <dependencies>
0N/A <dependency>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-core</artifactId>
0N/A <version>${project.version}</version>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-grizzly</artifactId>
0N/A <version>${project.version}</version>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-config</artifactId>
0N/A <version>${project.version}</version>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>forgerock-util</artifactId>
0N/A <version>1.2.0-SNAPSHOT</version>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>i18n-core</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.slf4j</groupId>
0N/A <artifactId>slf4j-api</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-core</artifactId>
0N/A <type>test-jar</type>
0N/A <version>${project.version}</version>
0N/A <scope>test</scope>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.forgerock</groupId>
0N/A <artifactId>forgerock-build-tools</artifactId>
0N/A <version>${forgerockBuildToolsVersion}</version>
0N/A <scope>test</scope>
0N/A </dependency>
0N/A </dependencies>
0N/A <build>
0N/A <plugins>
0N/A <plugin>
0N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>i18n-maven-plugin</artifactId>
0N/A <executions>
0N/A <execution>
0N/A <phase>generate-sources</phase>
0N/A <goals>
0N/A <goal>generate-messages</goal>
0N/A </goals>
0N/A <configuration>
0N/A <messageFiles>
0N/A <!-- <messageFile>com/forgerock/opendj/grizzly/grizzly.properties</messageFile> -->
0N/A </messageFiles>
0N/A </configuration>
0N/A </execution>
0N/A </executions>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-surefire-plugin</artifactId>
0N/A </plugin>
1260N/A <plugin>
1260N/A <groupId>org.apache.maven.plugins</groupId>
1260N/A <artifactId>maven-source-plugin</artifactId>
1260N/A </plugin>
1260N/A </plugins>
1260N/A </build>
1260N/A <reporting>
0N/A <plugins>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-project-info-reports-plugin</artifactId>
0N/A <reportSets>
0N/A <reportSet>
0N/A <reports>
0N/A <report>dependencies</report>
0N/A </reports>
0N/A </reportSet>
0N/A </reportSets>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-javadoc-plugin</artifactId>
0N/A <configuration>
0N/A <links>
0N/A <link>http://commons.forgerock.org/i18n-framework/i18n-core/apidocs</link>
1260N/A </links>
1260N/A </configuration>
1260N/A </plugin>
1260N/A </plugins>
1260N/A </reporting>
1260N/A</project>
1260N/A