pom.xml revision 47296dcccca008c937a201c9301a3b231dd3b47f
563N/A<?xml version="1.0"?>
563N/A<!--
563N/A ! CDDL HEADER START
563N/A !
563N/A ! The contents of this file are subject to the terms of the
563N/A ! Common Development and Distribution License, Version 1.0 only
563N/A ! (the "License"). You may not use this file except in compliance
563N/A ! with the License.
563N/A !
563N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
563N/A ! or http://forgerock.org/license/CDDLv1.0.html.
563N/A ! See the License for the specific language governing permissions
563N/A ! and limitations under the License.
563N/A !
563N/A ! When distributing Covered Code, include this CDDL HEADER in each
563N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
563N/A ! If applicable, add the following below this CDDL HEADER, with the
563N/A ! fields enclosed by brackets "[]" replaced with your own identifying
873N/A ! information:
563N/A ! Portions Copyright [yyyy] [name of copyright owner]
563N/A !
563N/A ! CDDL HEADER END
563N/A !
563N/A ! Copyright 2011-2012 ForgeRock AS
3231N/A !
563N/A -->
563N/A<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">
563N/A <modelVersion>4.0.0</modelVersion>
563N/A <parent>
563N/A <artifactId>opendj-project</artifactId>
563N/A <groupId>org.forgerock.opendj</groupId>
563N/A <version>2.7.0-SNAPSHOT</version>
563N/A </parent>
563N/A <artifactId>opendj-ldap-toolkit</artifactId>
563N/A <name>OpenDJ SDK Toolkit</name>
563N/A <description>
563N/A This module includes LDAP command line tools based on the OpenDJ LDAP SDK.
563N/A </description>
563N/A <packaging>jar</packaging>
563N/A <dependencies>
563N/A <dependency>
563N/A <groupId>org.forgerock.opendj</groupId>
563N/A <artifactId>opendj-ldap-sdk</artifactId>
563N/A <version>${project.version}</version>
563N/A </dependency>
563N/A <dependency>
563N/A <groupId>org.slf4j</groupId>
563N/A <artifactId>slf4j-api</artifactId>
563N/A </dependency>
563N/A <dependency>
563N/A <groupId>org.slf4j</groupId>
563N/A <artifactId>slf4j-jdk14</artifactId>
563N/A </dependency>
563N/A <dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>i18n-core</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock</groupId>
<artifactId>forgerock-build-tools</artifactId>
<version>${forgerockBuildToolsVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.forgerock.commons</groupId>
<artifactId>i18n-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate-messages</goal>
</goals>
<configuration>
<messageFiles>
<messageFile>com/forgerock/opendj/ldap/tools/tools.properties</messageFile>
</messageFiles>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/descriptor.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>