pom.xml revision 625e53b81e28bce5a207ff7a75f399f4d85a9529
18d589be75aa0cbaacae9ab2884c0b07943de024Eugen Kuksa<?xml version="1.0" encoding="UTF-8"?>
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa<!--
e1e5f30cafbcd33549c60a77eee73709b6f46249Eugen Kuksa ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
e1e5f30cafbcd33549c60a77eee73709b6f46249Eugen Kuksa ~
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ The contents of this file are subject to the terms
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ of the Common Development and Distribution License
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ (the License). You may not use this file except in
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ compliance with the License.
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~
beba53186708a907254c229f4097bb7de519b625Eugen Kuksa ~ You can obtain a copy of the License at
beba53186708a907254c229f4097bb7de519b625Eugen Kuksa ~ http://forgerock.org/license/CDDLv1.0.html
bb39f9f3b231588a5ed36d424ae27c6e31852feaEugen Kuksa ~ See the License for the specific language governing
bb39f9f3b231588a5ed36d424ae27c6e31852feaEugen Kuksa ~ permission and limitations under the License.
18d589be75aa0cbaacae9ab2884c0b07943de024Eugen Kuksa ~
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ When distributing Covered Code, include this CDDL
5fa563f0173e7791139e4229800fc91652293647Eugen Kuksa ~ Header Notice in each file and include the License file
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ at http://forgerock.org/license/CDDLv1.0.html
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ If applicable, add the following below the CDDL Header,
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa ~ with the fields enclosed by brackets [] replaced by
5fa563f0173e7791139e4229800fc91652293647Eugen Kuksa ~ your own identifying information:
5fa563f0173e7791139e4229800fc91652293647Eugen Kuksa ~ "Portions Copyrighted [year] [name of copyright owner]"
fdf9cef4c2e81f477f3023fb8e45f6faebfa5a65Eugen Kuksa -->
d102a920578426a89411cc8dabe47d7a881eab8fEugen Kuksa<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">
ceb5bd32f163b29b1cbea577334bc869c07add04Eugen Kuksa <modelVersion>4.0.0</modelVersion>
d102a920578426a89411cc8dabe47d7a881eab8fEugen Kuksa <parent>
e1e5f30cafbcd33549c60a77eee73709b6f46249Eugen Kuksa <artifactId>openidm-project</artifactId>
e1e5f30cafbcd33549c60a77eee73709b6f46249Eugen Kuksa <groupId>org.forgerock.openidm</groupId>
<version>3.1.0-RC2-SNAPSHOT</version>
</parent>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-security-jetty</artifactId>
<name>OpenIDM fragment for jetty security</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-httpcontext</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-jetty-fragment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.web</groupId>
<artifactId>pax-web-jetty-bundle</artifactId>
</dependency>
<!-- Provided OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Fragment-Host>org.forgerock.openidm.httpcontext</Fragment-Host>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>