pom.xml revision 25283fe6afd976240889dc0f51d886795112c7d1
5394N/A<?xml version="1.0" encoding="UTF-8"?>
5394N/A<!--
5394N/A ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5394N/A ~
5394N/A ~ Copyright (c) 2011-2015 ForgeRock AS. All Rights Reserved
5394N/A ~
5394N/A ~ The contents of this file are subject to the terms
5394N/A ~ of the Common Development and Distribution License
5394N/A ~ (the License). You may not use this file except in
5394N/A ~ compliance with the License.
5394N/A ~
5394N/A ~ You can obtain a copy of the License at
5394N/A ~ http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ See the License for the specific language governing
5394N/A ~ permission and limitations under the License.
5394N/A ~
5394N/A ~ When distributing Covered Code, include this CDDL
5394N/A ~ Header Notice in each file and include the License file
5394N/A ~ at http://forgerock.org/license/CDDLv1.0.html
5394N/A ~ If applicable, add the following below the CDDL Header,
5394N/A ~ with the fields enclosed by brackets [] replaced by
5394N/A ~ your own identifying information:
5394N/A ~ "Portions Copyrighted [year] [name of copyright owner]"
5394N/A -->
5394N/A<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">
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>4.0.0</version>
5394N/A </parent>
5394N/A <artifactId>openidm-enhanced-config</artifactId>
5394N/A <packaging>bundle</packaging>
5394N/A <name>OpenIDM Enhanced Configuration Bundle</name>
5394N/A <description>This bundle simplifies the JSON configuration for SCR services</description>
5394N/A
5394N/A <dependencies>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.commons</groupId>
5394N/A <artifactId>forgerock-util</artifactId>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.forgerock.openidm</groupId>
5394N/A <artifactId>openidm-crypto</artifactId>
5394N/A <version>${project.version}</version>
5394N/A </dependency>
5394N/A
5394N/A <!-- Provided OSGi Dependencies -->
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 <dependency>
5394N/A <groupId>org.osgi</groupId>
5394N/A <artifactId>org.osgi.compendium</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A
5394N/A <!-- Test Dependencies -->
5394N/A <dependency>
5394N/A <groupId>org.testng</groupId>
5394N/A <artifactId>testng</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.easytesting</groupId>
5394N/A <artifactId>fest-assert-core</artifactId>
5394N/A <scope>test</scope>
5394N/A </dependency>
5394N/A <dependency>
5394N/A <groupId>org.apache.felix</groupId>
5395N/A <artifactId>org.apache.felix.scr.annotations</artifactId>
5394N/A <scope>provided</scope>
5394N/A </dependency>
5394N/A </dependencies>
5394N/A <build>
5394N/A <plugins>
5394N/A <plugin>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>maven-scr-plugin</artifactId>
5394N/A <executions>
5394N/A <execution>
5394N/A <id>generate-scr-scrdescriptor</id>
5394N/A <goals>
5394N/A <goal>scr</goal>
5394N/A </goals>
5394N/A </execution>
5394N/A </executions>
5394N/A </plugin>
5394N/A <plugin>
5394N/A <groupId>org.apache.felix</groupId>
5394N/A <artifactId>maven-bundle-plugin</artifactId>
5394N/A <extensions>true</extensions>
5394N/A </plugin>
5394N/A </plugins>
5394N/A </build>
5394N/A</project>
5394N/A