diff options
author | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-08-01 16:48:20 +0000 |
---|---|---|
committer | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-08-01 16:48:20 +0000 |
commit | 2fa8ac87327c90a1ef050c42e051514910e7db68 (patch) | |
tree | 71dc39b8eecfe68038dc8746fda1f282b7dbf936 /redback-integrations/redback-jsecurity | |
parent | 167ea495d99caf86580d105bbbe9f6b50cd12834 (diff) | |
download | archiva-2fa8ac87327c90a1ef050c42e051514910e7db68.tar.gz archiva-2fa8ac87327c90a1ef050c42e051514910e7db68.zip |
[MRM-1651] Add OSGi support to redback-jsecurity
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1368117 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'redback-integrations/redback-jsecurity')
-rw-r--r-- | redback-integrations/redback-jsecurity/pom.xml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/redback-integrations/redback-jsecurity/pom.xml b/redback-integrations/redback-jsecurity/pom.xml index 105d405e0..12faab4f6 100644 --- a/redback-integrations/redback-jsecurity/pom.xml +++ b/redback-integrations/redback-jsecurity/pom.xml @@ -19,16 +19,19 @@ --> <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> <artifactId>redback-integrations</artifactId> <groupId>org.apache.archiva.redback</groupId> <version>2.0-SNAPSHOT</version> </parent> - <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-jsecurity</artifactId> - <version>2.0-SNAPSHOT</version> + <packaging>bundle</packaging> <name>Redback :: Integration :: JSecurity Integration</name> + <dependencies> <dependency> <groupId>org.apache.archiva.redback</groupId> @@ -70,4 +73,14 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + </plugin> + </plugins> + </build> + </project> |