pom.xml revision 62da52c144e8d6ba69f611c45deeeb4f985ea24c
2976N/A<?xml version="1.0"?>
2976N/A<!--
2976N/A The contents of this file are subject to the terms of the Common Development and
2976N/A Distribution License (the License). You may not use this file except in compliance with the
2976N/A License.
2976N/A
2976N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
2976N/A specific language governing permission and limitations under the License.
2976N/A
2976N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
2976N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
2976N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
2976N/A information: "Portions Copyright [year] [name of copyright owner]".
2976N/A
2976N/A Copyright 2012 ForgeRock AS.
2976N/A-->
2976N/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">
2976N/A <modelVersion>4.0.0</modelVersion>
2976N/A <parent>
2976N/A <artifactId>opendj-project</artifactId>
2976N/A <groupId>org.forgerock.opendj</groupId>
2976N/A <version>2.5.0-SNAPSHOT</version>
2976N/A </parent>
2976N/A <artifactId>opendj-rest2ldap</artifactId>
5022N/A <name>OpenDJ Commons REST Adapter</name>
2976N/A <description>
2976N/A This module includes APIs for accessing LDAP repositories using commons REST.
2976N/A </description>
2976N/A <packaging>bundle</packaging>
2976N/A <properties>
3824N/A <checkstyleHeaderLocation>org/forgerock/checkstyle/default-java-header</checkstyleHeaderLocation>
2976N/A </properties>
2976N/A <dependencies>
2976N/A <dependency>
2976N/A <groupId>org.forgerock.opendj</groupId>
2976N/A <artifactId>opendj-ldap-sdk</artifactId>
2976N/A <version>${project.version}</version>
2976N/A </dependency>
2976N/A <dependency>
4495N/A <groupId>org.forgerock.commons</groupId>
2976N/A <artifactId>json-fluent</artifactId>
2976N/A <version>${forgerockRestVersion}</version>
2976N/A </dependency>
2976N/A <dependency>
3824N/A <groupId>org.forgerock.commons</groupId>
3824N/A <artifactId>json-resource</artifactId>
3824N/A <version>${forgerockRestVersion}</version>
3824N/A </dependency>
3824N/A <dependency>
3824N/A <groupId>org.forgerock</groupId>
3842N/A <artifactId>forgerock-build-tools</artifactId>
3842N/A <version>${forgerockBuildToolsVersion}</version>
3824N/A <scope>test</scope>
3842N/A </dependency>
2976N/A </dependencies>
2976N/A <build>
2976N/A <plugins>
2976N/A <!--
4495N/A <plugin>
3824N/A <groupId>org.forgerock.commons</groupId>
3824N/A <artifactId>i18n-maven-plugin</artifactId>
3824N/A <executions>
4287N/A <execution>
3824N/A <phase>generate-sources</phase>
3824N/A <goals>
2976N/A <goal>generate-messages</goal>
2976N/A </goals>
2976N/A <configuration>
2976N/A <messageFiles>
2976N/A <messageFile>com/forgerock/opendj/sync/sync.properties</messageFile>
2976N/A </messageFiles>
2976N/A </configuration>
4495N/A </execution>
2976N/A </executions>
2976N/A </plugin>
2976N/A -->
2976N/A <plugin>
2976N/A <groupId>org.apache.felix</groupId>
2976N/A <artifactId>maven-bundle-plugin</artifactId>
2976N/A <extensions>true</extensions>
2976N/A </plugin>
2976N/A <plugin>
4495N/A <groupId>org.apache.maven.plugins</groupId>
5022N/A <artifactId>maven-surefire-plugin</artifactId>
3824N/A </plugin>
5022N/A </plugins>
2976N/A </build>
2976N/A <reporting>
2976N/A <plugins>
2976N/A <plugin>
5022N/A <groupId>org.apache.maven.plugins</groupId>
2976N/A <artifactId>maven-project-info-reports-plugin</artifactId>
2976N/A <reportSets>
2976N/A <reportSet>
2976N/A <reports>
2976N/A <report>mailing-list</report>
4915N/A <report>issue-tracking</report>
4915N/A <report>license</report>
2976N/A <report>scm</report>
2976N/A <report>cim</report>
2976N/A <report>distribution-management</report>
4915N/A </reports>
4915N/A </reportSet>
4915N/A </reportSets>
4915N/A </plugin>
4915N/A </plugins>
4915N/A </reporting>
2976N/A</project>
2976N/A