[MRM-1651] Add OSGi support in redback-authentication-api
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1367556 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
634c78af51
commit
e107da72ac
12
pom.xml
12
pom.xml
|
@ -36,7 +36,6 @@
|
|||
<url>http://archiva.apache.org/redback/core</url>
|
||||
<inceptionYear>2006</inceptionYear>
|
||||
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>joakime</id>
|
||||
|
@ -70,6 +69,14 @@
|
|||
<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>
|
||||
|
@ -119,7 +126,6 @@
|
|||
<url>http://jira.codehaus.org/browse/REDBACK</url>
|
||||
</issueManagement>
|
||||
|
||||
|
||||
<modules>
|
||||
<module>redback-authentication</module>
|
||||
<module>redback-authorization</module>
|
||||
|
@ -155,7 +161,6 @@
|
|||
<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>
|
||||
|
@ -930,5 +935,4 @@
|
|||
</plugins>
|
||||
</reporting>
|
||||
|
||||
|
||||
</project>
|
||||
|
|
|
@ -19,13 +19,17 @@
|
|||
-->
|
||||
<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>
|
||||
|
@ -44,4 +48,21 @@
|
|||
<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>
|
||||
|
|
Loading…
Reference in New Issue