<url>http://archiva.apache.org/redback/core</url>
<inceptionYear>2006</inceptionYear>
-
<developers>
<developer>
<id>joakime</id>
<role>Developer</role>
</roles>
</developer>
+ <developer>
+ <id>jbonofre</id>
+ <name>Jean-Baptiste Onofré</name>
+ <email>jbonofre@apache.org</email>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ </developer>
</developers>
<contributors>
<url>http://jira.codehaus.org/browse/REDBACK</url>
</issueManagement>
-
<modules>
<module>redback-authentication</module>
<module>redback-authorization</module>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gpg.useagent>true</gpg.useagent>
<cxfVersion>2.6.1</cxfVersion>
-
<!--
<redbackTestJdbcUrl>jdbc:derby:memory:users-test;create=true</redbackTestJdbcUrl>
<redbackTestJdbcDriver>org.apache.derby.jdbc.EmbeddedDriver</redbackTestJdbcDriver>
</plugins>
</reporting>
-
</project>
-->
<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.apache.archiva.redback</groupId>
<artifactId>redback-authentication</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
+
<artifactId>redback-authentication-api</artifactId>
+ <packaging>bundle</packaging>
<name>Redback :: Authentication API</name>
+
<dependencies>
<dependency>
<groupId>org.apache.archiva.redback</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <configuration>
+ <instructions>
+ <Export-Bundle>
+ org.apache.archiva.redback.authentication;version=${project.version}
+ </Export-Bundle>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>