pom.xml revision 1101d35be31e763f91f4570709d4e098dac82bb0
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski<?xml version="1.0" encoding="UTF-8"?>
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski<!--
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ Copyright (c) 2011-2012 ForgeRock AS. All Rights Reserved
e6ce7942f582ab8fa4df1fa329080f7aaf1be9f4Till Mossakowski ~
e6ce7942f582ab8fa4df1fa329080f7aaf1be9f4Till Mossakowski ~ The contents of this file are subject to the terms
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ of the Common Development and Distribution License
e6ce7942f582ab8fa4df1fa329080f7aaf1be9f4Till Mossakowski ~ (the License). You may not use this file except in
e6ce7942f582ab8fa4df1fa329080f7aaf1be9f4Till Mossakowski ~ compliance with the License.
e6ce7942f582ab8fa4df1fa329080f7aaf1be9f4Till Mossakowski ~
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ You can obtain a copy of the License at
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ http://forgerock.org/license/CDDLv1.0.html
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ See the License for the specific language governing
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ permission and limitations under the License.
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ When distributing Covered Code, include this CDDL
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ Header Notice in each file and include the License file
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ at http://forgerock.org/license/CDDLv1.0.html
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ If applicable, add the following below the CDDL Header,
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ with the fields enclosed by brackets [] replaced by
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ your own identifying information:
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski ~ "Portions Copyrighted [year] [name of copyright owner]"
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski -->
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski<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">
3191a1b1608839c6f1757322a130e608ac4a157eTill Mossakowski <modelVersion>4.0.0</modelVersion>
4918e2f622cfb96f9a57b7617cd18ca7e4f8b5d4Christian Maeder <parent>
<artifactId>openidm-project</artifactId>
<groupId>org.forgerock.openidm</groupId>
<version>3.1.0-RC2-SNAPSHOT</version>
</parent>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-servlet</artifactId>
<name>OpenIDM Web Servlet</name>
<packaging>bundle</packaging>
<description>Bundle containing a servlet which allows exposing web content provided by optional bundles using OSGI.</description>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-system</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-enhanced-config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.web</groupId>
<artifactId>pax-web-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/webapp</directory>
</resource>
</resources>
<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>
<Import-Package>*</Import-Package>
<Include-Resource>{maven-resources}</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>