pom.xml revision b7e0eb2a569767e809950d95f945ebf4bdcd9bf6
5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A The contents of this file are subject to the terms of the Common Development and
5394N/A Distribution License (the License). You may not use this file except in compliance with the
5394N/A License.
5394N/A
5394N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
5394N/A specific language governing permission and limitations under the License.
5394N/A
5394N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
5394N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
5394N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
5394N/A information: "Portions Copyrighted [year] [name of copyright owner]".
5394N/A
5394N/A Copyright © 2011 ForgeRock AS. All rights reserved.
5394N/A-->
5394N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5394N/A 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>2.0.0-SNAPSHOT</version>
5394N/A </parent>
5714N/A <artifactId>openidm-jaas-loginmodule-repo</artifactId>
5394N/A <name>OpenIDM JAAS login module for Repository</name>
5394N/A <packaging>bundle</packaging>
5394N/A <dependencies>
5394N/A <!-- CryptoService dependency -->
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-core</artifactId>
5394N/A <version>${openidm.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-repo</artifactId>
5394N/A <version>${openidm.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-httpcontext</artifactId>
5394N/A <version>${openidm.version}</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.commons</groupId>
5394N/A <artifactId>json-fluent</artifactId>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.ops4j.pax.web</groupId>
5714N/A <artifactId>pax-web-jetty-bundle</artifactId>
5394N/A <version>1.1.1</version>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.core</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A <!-- Test Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.easytesting</groupId>
5394N/A <artifactId>fest-assert</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.testng</groupId>
5394N/A <artifactId>testng</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A </dependencies>
5394N/A <build>
5394N/A <resources>
5394N/A <resource>
5395N/A <directory>${basedir}/src/main/java</directory>
5394N/A <includes>
5394N/A <include>META-INF/**/*</include>
5394N/A </includes>
5394N/A </resource>
5394N/A </resources>
5394N/A <plugins>
5394N/A <plugin>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>maven-bundle-plugin</artifactId>
5394N/A <extensions>true</extensions>
5394N/A <configuration>
5394N/A <instructions>
5394N/A <Import-Package>*</Import-Package>
5394N/A <Fragment-Host>org.forgerock.openidm.httpcontext</Fragment-Host>
5394N/A <Export-Package>org.forgerock.openidm.jaas;uses:="org.eclipse.jetty.http.security,org.eclipse.jetty.plus.jaas,org.eclipse.jetty.plus.jaas.callback,javax.security.auth.spi";version="${openidm.version}"</Export-Package>
5394N/A </instructions>
5394N/A </configuration>
5394N/A </plugin>
5394N/A </plugins>
5394N/A </build>
5394N/A</project>
5394N/A