pom.xml revision 3c48c5f7056759c7eea1e7b78d46348328edcf1f
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A<!--
2N/A ! CDDL HEADER START
2N/A !
2N/A ! The contents of this file are subject to the terms of the
2N/A ! Common Development and Distribution License, Version 1.0 only
2N/A ! (the "License"). You may not use this file except in compliance
2N/A ! with the License.
2N/A !
2N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
2N/A ! or http://forgerock.org/license/CDDLv1.0.html.
2N/A ! See the License for the specific language governing permissions
2N/A ! and limitations under the License.
2N/A !
2N/A ! When distributing Covered Code, include this CDDL HEADER in each
2N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
2N/A ! If applicable, add the following below this CDDL HEADER, with the
2N/A ! fields enclosed by brackets "[]" replaced with your own identifying
2N/A ! information:
2N/A ! Portions Copyright [yyyy] [name of copyright owner]
2N/A !
2N/A ! CDDL HEADER END
2N/A !
2N/A ! Copyright 2014-2015 ForgeRock AS
2N/A !
2N/A-->
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A <parent>
2N/A <artifactId>opendj-server-parent</artifactId>
2N/A <groupId>org.forgerock.opendj</groupId>
2N/A <version>3.0.0-SNAPSHOT</version>
2N/A </parent>
2N/A <artifactId>opendj-server-example-plugin</artifactId>
2N/A <name>OpenDJ Server Example Plugin</name>
2N/A <description>
2N/A An example OpenDJ Server plugin illustrating how custom components may be developed for OpenDJ.
2N/A </description>
2N/A <packaging>jar</packaging>
2N/A <dependencies>
2N/A <dependency>
2N/A <groupId>org.forgerock.opendj</groupId>
2N/A <artifactId>opendj-core</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.opendj</groupId>
2N/A <artifactId>opendj-config</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>i18n-slf4j</artifactId>
2N/A </dependency>
2N/A <dependency>
2N/A <groupId>org.slf4j</groupId>
2N/A <artifactId>slf4j-api</artifactId>
2N/A </dependency>
2N/A </dependencies>
2N/A <build>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.forgerock.commons</groupId>
2N/A <artifactId>i18n-maven-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <phase>generate-sources</phase>
2N/A <goals>
2N/A <goal>generate-messages</goal>
2N/A </goals>
2N/A <configuration>
2N/A <resourceDirectory>${basedir}/src/main/java</resourceDirectory>
2N/A <messageFiles>
2N/A <messageFile>com/example/opendj/example_plugin.properties</messageFile>
2N/A </messageFiles>
2N/A </configuration>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.forgerock.opendj</groupId>
2N/A <artifactId>opendj-maven-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>generate-config</id>
2N/A <phase>generate-sources</phase>
2N/A <goals>
2N/A <goal>generate-config</goal>
2N/A </goals>
2N/A <configuration>
2N/A <packageName>com.example.opendj</packageName>
2N/A </configuration>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-source-plugin</artifactId>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-assembly-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>make-assembly</id>
2N/A <phase>package</phase>
2N/A <goals>
2N/A <goal>single</goal>
2N/A </goals>
2N/A <configuration>
2N/A <appendAssemblyId>false</appendAssemblyId>
2N/A <descriptors>
2N/A <descriptor>src/main/assembly/descriptor.xml</descriptor>
2N/A </descriptors>
2N/A </configuration>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A <reporting>
2N/A <plugins>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-project-info-reports-plugin</artifactId>
2N/A <reportSets>
2N/A <reportSet>
2N/A <reports>
2N/A <report>dependencies</report>
2N/A </reports>
2N/A </reportSet>
2N/A </reportSets>
2N/A </plugin>
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-javadoc-plugin</artifactId>
2N/A </plugin>
2N/A </plugins>
2N/A </reporting>
2N/A</project>
2N/A