pom.xml revision 0e1ac7c8da21e591ae3056f6f7801b6c03e0c9a3
0N/A<?xml version="1.0" encoding="UTF-8"?>
579N/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
0N/A ! information:
0N/A ! Portions Copyright [yyyy] [name of copyright owner]
0N/A !
0N/A ! CDDL HEADER END
0N/A !
0N/A ! Copyright 2011 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" 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-ldap-sdk-examples</artifactId>
0N/A <name>OpenDJ SDK Examples</name>
0N/A <description>Examples illustrating usage of the OpenDJ LDAP SDK</description>
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.slf4j</groupId>
0N/A <artifactId>slf4j-jdk14</artifactId>
542N/A </dependency>
542N/A </dependencies>
542N/A <build>
0N/A <plugins>
0N/A <plugin>
542N/A <groupId>org.apache.maven.plugins</groupId>
542N/A <artifactId>maven-shade-plugin</artifactId>
542N/A <configuration>
0N/A <createDependencyReducedPom>false</createDependencyReducedPom>
0N/A </configuration>
0N/A <executions>
0N/A <execution>
0N/A <phase>package</phase>
0N/A <goals>
0N/A <goal>shade</goal>
0N/A </goals>
0N/A </execution>
0N/A </executions>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-source-plugin</artifactId>
0N/A </plugin>
0N/A </plugins>
0N/A </build>
0N/A <reporting>
0N/A <plugins>
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>
0N/A </links>
0N/A </configuration>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-jxr-plugin</artifactId>
0N/A <version>2.2</version>
0N/A <reportSets>
0N/A <reportSet>
0N/A <reports>
0N/A <report>jxr</report>
0N/A </reports>
0N/A </reportSet>
0N/A </reportSets>
0N/A </plugin>
0N/A </plugins>
0N/A </reporting>
0N/A</project>