pom.xml revision 610c44b8740b31fbcb53632c8478698af5183aeb
25f72e2845c89a153ca9d3279d7feccbc912524ematthew<?xml version="1.0" encoding="UTF-8"?>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew<!--
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ Copyright (c) 2012-2013 ForgeRock AS. All Rights Reserved
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ The contents of this file are subject to the terms
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ of the Common Development and Distribution License
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ (the License). You may not use this file except in
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ compliance with the License.
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ You can obtain a copy of the License at
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ http://forgerock.org/license/CDDLv1.0.html
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ See the License for the specific language governing
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ permission and limitations under the License.
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ When distributing Covered Code, include this CDDL
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ Header Notice in each file and include the License file
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ at http://forgerock.org/license/CDDLv1.0.html
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ If applicable, add the following below the CDDL Header,
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ with the fields enclosed by brackets [] replaced by
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ your own identifying information:
25f72e2845c89a153ca9d3279d7feccbc912524ematthew ~ "Portions Copyrighted [year] [name of copyright owner]"
25f72e2845c89a153ca9d3279d7feccbc912524ematthew -->
7edeca432448c9eb6a7618b130fccc3eb04459aemark<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">
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <modelVersion>4.0.0</modelVersion>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <parent>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>openidm-project</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.forgerock.openidm</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <version>4.0.0</version>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </parent>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>openidm-customendpoint</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <packaging>bundle</packaging>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <name>OpenIDM Custom Endpoints Bundle</name>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <description>This bundle allow to start custom scripted endpoints accessed under /endpoint/</description>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependencies>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- ForgeRock Commons -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.forgerock.commons</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>forgerock-util</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.forgerock.http</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>chf-http-core</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- OpenDIM Dependencies -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.forgerock.openidm</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>openidm-script</artifactId>
7edeca432448c9eb6a7618b130fccc3eb04459aemark <version>${project.version}</version>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- Provided OSGi Dependencies -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.osgi</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>org.osgi.core</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>provided</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- TODO Remove org.apache.felix.framework when Compendium 4.3 is used -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.apache.felix</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>org.apache.felix.framework</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>provided</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.osgi</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>org.osgi.compendium</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>provided</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- Provided Dependencies -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
28a3ff3fa0d3b5e1c774217425cf609cc6339df7matthew <groupId>org.apache.felix</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>org.apache.felix.scr.annotations</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>provided</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <!-- Test Dependencies -->
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.testng</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>testng</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>test</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.easytesting</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>fest-assert-core</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>test</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.mockito</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>mockito-all</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <scope>test</scope>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependency>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </dependencies>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <build>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <plugins>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <plugin>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <groupId>org.apache.felix</groupId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <artifactId>maven-scr-plugin</artifactId>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <executions>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <execution>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <id>generate-scr-scrdescriptor</id>
341664ce1d0029ac39e10f21cebc2d57bac59ce1matthew <goals>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew <goal>scr</goal>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </goals>
25f72e2845c89a153ca9d3279d7feccbc912524ematthew </execution>
c474d6853192b277a73b133d56970bbf118d3fe3mark </executions>
820ed286b08eac25f26a4904ca06e9d600b612aemark </plugin>
c474d6853192b277a73b133d56970bbf118d3fe3mark <plugin>
c474d6853192b277a73b133d56970bbf118d3fe3mark <groupId>org.apache.felix</groupId>
5ffeac9af157b599c7fb34a23d6c50161fbd6a6cmatthew <artifactId>maven-bundle-plugin</artifactId>
c474d6853192b277a73b133d56970bbf118d3fe3mark <extensions>true</extensions>
c474d6853192b277a73b133d56970bbf118d3fe3mark </plugin>
5ffeac9af157b599c7fb34a23d6c50161fbd6a6cmatthew </plugins>
5ffeac9af157b599c7fb34a23d6c50161fbd6a6cmatthew </build>
5ffeac9af157b599c7fb34a23d6c50161fbd6a6cmatthew</project>
5ffeac9af157b599c7fb34a23d6c50161fbd6a6cmatthew