pom.xml revision 610c44b8740b31fbcb53632c8478698af5183aeb
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi<?xml version="1.0" encoding="UTF-8"?>
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi<!--
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd ~
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd ~ Copyright 2011-2015 ForgeRock AS. All Rights Reserved
aa73764d2ad5d41bb2f494e3bae803fa7290806ayoshiki ~
6ae232055d4d8a97267517c5e50074c2c819941and ~ The contents of this file are subject to the terms
aa73764d2ad5d41bb2f494e3bae803fa7290806ayoshiki ~ of the Common Development and Distribution License
6ae232055d4d8a97267517c5e50074c2c819941and ~ (the License). You may not use this file except in
6aadbc6fd703e73d1d419e9f06b84a4338c898f1maczniak ~ compliance with the License.
6aadbc6fd703e73d1d419e9f06b84a4338c898f1maczniak ~
6aadbc6fd703e73d1d419e9f06b84a4338c898f1maczniak ~ You can obtain a copy of the License at
6aadbc6fd703e73d1d419e9f06b84a4338c898f1maczniak ~ http://forgerock.org/license/CDDLv1.0.html
1d980e5489836e977ba59b419e27b0ec875c4bd3takashi ~ See the License for the specific language governing
1d980e5489836e977ba59b419e27b0ec875c4bd3takashi ~ permission and limitations under the License.
1d980e5489836e977ba59b419e27b0ec875c4bd3takashi ~
1d980e5489836e977ba59b419e27b0ec875c4bd3takashi ~ When distributing Covered Code, include this CDDL
~ Header Notice in each file and include the License file
~ at http://forgerock.org/license/CDDLv1.0.html
~ If applicable, add the following below the CDDL Header,
~ with the fields enclosed by brackets [] replaced by
~ your own identifying information:
~ "Portions Copyrighted [year] [name of copyright owner]"
-->
<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>
<artifactId>openidm-project</artifactId>
<groupId>org.forgerock.openidm</groupId>
<version>4.0.0</version>
</parent>
<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>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.forgerock.commons</groupId>
<artifactId>forgerock-util</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</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.framework</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>