pom.xml revision a0be79465cb81d32318be4ae04865c76d13f7c0d
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<?xml version="1.0" encoding="UTF-8"?>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<!--
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ The contents of this file are subject to the terms
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ of the Common Development and Distribution License
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ (the License). You may not use this file except in
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ compliance with the License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ You can obtain a copy of the License at
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ http://forgerock.org/license/CDDLv1.0.html
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ See the License for the specific language governing
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major ~ permission and limitations under the License.
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~
1f48f8236de7de97be1c6b9d06bef50b379c8801jenkins ~ When distributing Covered Code, include this CDDL
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ Header Notice in each file and include the License file
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ at http://forgerock.org/license/CDDLv1.0.html
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ If applicable, add the following below the CDDL Header,
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ with the fields enclosed by brackets [] replaced by
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ your own identifying information:
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major ~ "Portions Copyrighted [year] [name of copyright owner]"
2d8eba3efb0ced5c2ab004e5b3e949094747aeb3jenkins -->
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<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">
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <modelVersion>4.0.0</modelVersion>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <groupId>org.forgerock.openidm</groupId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openidm-project</artifactId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <version>3.1.0-RC1</version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openidm-crypto</artifactId>
<packaging>bundle</packaging>
<name>OpenIDM Cryptography Bundle</name>
<description>This bundle provides the JSON Cryptography</description>
<dependencies>
<dependency>
<groupId>org.forgerock.openidm</groupId>
<artifactId>openidm-util</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Provided OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</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>
<Bundle-Activator>org.forgerock.openidm.crypto.impl.Activator</Bundle-Activator>
<Main-Class>org.forgerock.openidm.crypto.impl.Main</Main-Class>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>