pom.xml revision de77eadea038afda4df88c24d8c1a97b5d4b2a3f
0N/A<?xml version="1.0" encoding="UTF-8"?>
1988N/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
1879N/A !
1879N/A-->
1879N/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">
1879N/A <modelVersion>4.0.0</modelVersion>
1879N/A <parent>
1879N/A <artifactId>opendj-project</artifactId>
1879N/A <groupId>org.forgerock.opendj</groupId>
1879N/A <version>2.8.0-SNAPSHOT</version>
1879N/A </parent>
1879N/A <artifactId>opendj-grizzly</artifactId>
1879N/A <name>OpenDJ Grizzly Transport Provider</name>
1879N/A <description>
1879N/A This module includes a Grizzly based network transport provider for OpenDJ.
1879N/A </description>
1879N/A <packaging>bundle</packaging>
1879N/A <dependencies>
1879N/A <dependency>
1879N/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-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.commons</groupId>
0N/A <artifactId>i18n-core</artifactId>
0N/A </dependency>
0N/A <dependency>
0N/A <groupId>org.glassfish.grizzly</groupId>
0N/A <artifactId>grizzly-framework</artifactId>
0N/A <version>${grizzlyFrameworkVersion}</version>
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</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 <properties>
0N/A <opendj.osgi.import>
0N/A com.sun.security.auth*;resolution:=optional,
0N/A *
0N/A </opendj.osgi.import>
0N/A </properties>
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>
304N/A <execution>
304N/A <phase>generate-sources</phase>
0N/A <goals>
0N/A <goal>generate-messages</goal>
0N/A </goals>
0N/A <configuration>
304N/A <messageFiles>
304N/A <messageFile>com/forgerock/opendj/grizzly/grizzly.properties</messageFile>
304N/A </messageFiles>
304N/A </configuration>
304N/A </execution>
304N/A </executions>
304N/A </plugin>
304N/A <plugin>
304N/A <groupId>org.apache.felix</groupId>
304N/A <artifactId>maven-bundle-plugin</artifactId>
304N/A <extensions>true</extensions>
304N/A </plugin>
304N/A <plugin>
304N/A <groupId>org.apache.maven.plugins</groupId>
304N/A <artifactId>maven-surefire-plugin</artifactId>
304N/A </plugin>
304N/A <plugin>
304N/A <groupId>org.apache.maven.plugins</groupId>
304N/A <artifactId>maven-source-plugin</artifactId>
304N/A </plugin>
304N/A </plugins>
304N/A </build>
304N/A <reporting>
304N/A <plugins>
304N/A <plugin>
304N/A <groupId>org.apache.maven.plugins</groupId>
304N/A <artifactId>maven-project-info-reports-plugin</artifactId>
304N/A <reportSets>
304N/A <reportSet>
304N/A <reports>
304N/A <report>dependencies</report>
304N/A </reports>
304N/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>
304N/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 </plugins>
0N/A </reporting>
0N/A</project>
0N/A