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