pom.xml revision b788d2300f238000fd39ca6f0cc4b24ac211157a
0N/A<?xml version="1.0" encoding="UTF-8"?>
5668N/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
2362N/A ! information:
2362N/A ! Portions Copyright [yyyy] [name of copyright owner]
2362N/A !
0N/A ! CDDL HEADER END
0N/A !
647N/A ! Copyright 2014-2015 ForgeRock AS
647N/A !
2581N/A-->
5272N/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">
667N/A <modelVersion>4.0.0</modelVersion>
4854N/A <parent>
5828N/A <artifactId>opendj-server-parent</artifactId>
647N/A <groupId>org.forgerock.opendj</groupId>
647N/A <version>3.0.0-M7</version>
176N/A </parent>
176N/A <artifactId>opendj-server-example-plugin</artifactId>
647N/A <name>OpenDJ Server Example Plugin</name>
176N/A <description>
176N/A An example OpenDJ Server plugin illustrating how custom components may be developed for OpenDJ.
176N/A </description>
5270N/A <packaging>jar</packaging>
5270N/A <dependencies>
5270N/A <dependency>
5270N/A <groupId>org.forgerock.opendj</groupId>
176N/A <artifactId>opendj-core</artifactId>
5270N/A </dependency>
5270N/A <dependency>
0N/A <groupId>org.forgerock.opendj</groupId>
4854N/A <artifactId>opendj-config</artifactId>
647N/A </dependency>
0N/A <dependency>
647N/A <groupId>org.forgerock.commons</groupId>
0N/A <artifactId>i18n-slf4j</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.slf4j</groupId>
0N/A <artifactId>slf4j-api</artifactId>
647N/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 <resourceDirectory>${basedir}/src/main/java</resourceDirectory>
4854N/A <messageFiles>
0N/A <messageFile>com/example/opendj/example_plugin.properties</messageFile>
0N/A </messageFiles>
0N/A </configuration>
0N/A </execution>
0N/A </executions>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-maven-plugin</artifactId>
0N/A <executions>
0N/A <execution>
0N/A <id>generate-config</id>
5270N/A <phase>generate-sources</phase>
647N/A <goals>
0N/A <goal>generate-config</goal>
0N/A </goals>
0N/A <configuration>
0N/A <packageName>com.example.opendj</packageName>
0N/A </configuration>
4854N/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>
647N/A </plugin>
647N/A <plugin>
647N/A <groupId>org.apache.maven.plugins</groupId>
647N/A <artifactId>maven-assembly-plugin</artifactId>
0N/A <executions>
0N/A <execution>
4854N/A <id>make-assembly</id>
0N/A <phase>package</phase>
0N/A <goals>
0N/A <goal>single</goal>
0N/A </goals>
0N/A <configuration>
0N/A <appendAssemblyId>false</appendAssemblyId>
0N/A <descriptors>
0N/A <descriptor>src/main/assembly/descriptor.xml</descriptor>
0N/A </descriptors>
0N/A </configuration>
5270N/A </execution>
0N/A </executions>
0N/A </plugin>
176N/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-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>
5270N/A </reportSets>
0N/A </plugin>
0N/A <plugin>
5270N/A <groupId>org.apache.maven.plugins</groupId>
4854N/A <artifactId>maven-javadoc-plugin</artifactId>
647N/A </plugin>
0N/A </plugins>
0N/A </reporting>
5270N/A</project>
5270N/A