<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ This work is part of OpenLDAP Software <http://www.openldap.org/>.
  ~
  ~  Copyright 1998-2014 The OpenLDAP Foundation.
  ~  All rights reserved.
  ~
  ~  Redistribution and use in source and binary forms, with or without
  ~  modification, are permitted only as authorized by the OpenLDAP
  ~  Public License.
  ~
  ~  A copy of this license is available in the file LICENSE in the
  ~  top-level directory of the distribution or, alternatively, at
  ~  <http://www.OpenLDAP.org/license.html>.
  ~
  -->
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.openldap</groupId>
        <artifactId>accelerator</artifactId>
        <version>1.0-RC41</version>
    </parent>

    <artifactId>accelerator-api</artifactId>
    <name>Fortress Accelerator API</name>
    <packaging>bundle</packaging>
    <description>
        Fortress Accelerator RBAC Client API
    </description>

    <licenses>
        <license>
            <name>OpenLDAP Public License</name>
            <url>http://www.OpenLDAP.org/license.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>http://www.openldap.org/software/repo/openldap-fortress-core.git</url>
        <connection>git://git.openldap.org/openldap-fortress-core.git</connection>
    </scm>

    <issueManagement>
        <system>RBAC Accelerator JIRA</system>
        <url>https://fortress.atlassian.net/browse/RA/</url>
    </issueManagement>

    <mailingLists>
        <mailingList>
            <name>openldap-fortress -- OpenLDAP Fortress Discussion list</name>
            <post>openldap-fortress@openldap.org</post>
            <archive>http://www.openldap.org/lists/openldap-fortress/</archive>
        </mailingList>
    </mailingLists>

    <developers>
        <developer>
            <id>elecharny</id>
            <name>Emmanuel Lecharny</name>
            <email>elecharny@symas.com</email>
            <roles>
                <role>Developer</role>
            </roles>
            <organization>Symas Corporation</organization>
            <timezone>+1</timezone>
        </developer>
        <developer>
            <id>smckinney</id>
            <name>Shawn McKinney</name>
            <email>smckinney@symas.com</email>
            <roles>
                <role>Developer</role>
            </roles>
            <organization>Symas Corporation</organization>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>org.apache.directory.junit</groupId>
            <artifactId>junit-addons</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.directory.api</groupId>
            <artifactId>api-all</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <inherited>true</inherited>
                <extensions>true</extensions>
                <configuration>
                    <manifestLocation>META-INF</manifestLocation>
                    <instructions>
                        <Bundle-SymbolicName>${project.groupId}.ldap.extras.codec.api</Bundle-SymbolicName>
                        <Export-Package>
                            {local-packages};version=${project.version};-noimport:=true
                        </Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
