pom.xml revision e51705d7e865d4f45819733b273f4948b379d367
5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5394N/A ~
5394N/A ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
5394N/A ~
5394N/A ~ The contents of this file are subject to the terms
5394N/A ~ of the Common Development and Distribution License
5394N/A ~ (the License). You may not use this file except in
5394N/A ~ compliance with the License.
5394N/A ~
5394N/A ~ You can obtain a copy of the License at
5394N/A ~ http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ See the License for the specific language governing
5394N/A ~ permission and limitations under the License.
5394N/A ~
5394N/A ~ When distributing Covered Code, include this CDDL
5394N/A ~ Header Notice in each file and include the License file
5394N/A ~ at http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ If applicable, add the following below the CDDL Header,
5394N/A ~ with the fields enclosed by brackets [] replaced by
5394N/A ~ your own identifying information:
5394N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
5394N/A -->
6238N/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">
5394N/A <modelVersion>4.0.0</modelVersion>
5394N/A <parent>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-project</artifactId>
5394N/A <version>3.1.0-RC2-SNAPSHOT</version>
5394N/A </parent>
5394N/A <artifactId>openidm-jetty-fragment</artifactId>
5394N/A <packaging>bundle</packaging>
5394N/A <name>OpenIDM Jetty Fragment</name>
5394N/A <description>This fragment attaches to PAX Jetty and allow access to OpenIDM boot properties</description>
5394N/A
5394N/A <dependencies>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-crypto</artifactId>
5394N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A
5394N/A<!-- Not necessary when using dynamic import
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-jaas-loginmodule-repo</artifactId>
5394N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A-->
5714N/A <dependency>
5394N/A <groupId>org.ops4j.pax.web</groupId>
5394N/A <artifactId>pax-web-jetty-bundle</artifactId>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.compendium</artifactId>
5394N/A <version>4.2.0</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>org.apache.felix.framework</artifactId>
5394N/A <version>4.2.1</version>
5394N/A </dependency>
5394N/A
5394N/A <!-- Test Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.testng</groupId>
5394N/A <artifactId>testng</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
6238N/A <dependency>
5947N/A <groupId>org.easytesting</groupId>
5947N/A <artifactId>fest-assert-core</artifactId>
5947N/A <scope>test</scope>
5947N/A </dependency>
5947N/A </dependencies>
5947N/A <build>
5947N/A <resources>
5947N/A <resource>
5947N/A <directory>${basedir}/src/main/java</directory>
5947N/A <includes>
5947N/A <include>META-INF/**/*</include>
5947N/A </includes>
5947N/A </resource>
5947N/A </resources>
5947N/A <plugins>
5947N/A <plugin>
5947N/A <groupId>org.apache.felix</groupId>
5947N/A <artifactId>maven-bundle-plugin</artifactId>
5947N/A <extensions>true</extensions>
5394N/A <configuration>
5394N/A <instructions>
5395N/A <!-- Avoid transient felix resolution issues with dynamic resolution -->
5394N/A <DynamicImport-Package>org.forgerock.openidm.jaas</DynamicImport-Package>
5394N/A <Fragment-Host>org.ops4j.pax.web.pax-web-jetty-bundle</Fragment-Host>
5394N/A <Export-Package>org.forgerock.openidm.jetty</Export-Package>
5394N/A </instructions>
5394N/A </configuration>
5394N/A </plugin>
5947N/A </plugins>
5394N/A </build>
5394N/A</project>
5394N/A