blob: 2dd4125d1b5d76a92f40e7156de7a6c8b2e4b291 [file] [log] [blame]
Karl Pauls36407322008-03-07 00:37:30 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Karl Pauls77beac32010-02-04 23:04:42 +000019<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">
Karl Pauls36407322008-03-07 00:37:30 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Richard S. Hall1836b0c2010-01-11 13:30:42 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <relativePath>../pom/pom.xml</relativePath>
Karl Pauls36407322008-03-07 00:37:30 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Security Provider</name>
29 <artifactId>org.apache.felix.framework.security</artifactId>
Karl Paulsede4a0d2010-02-07 20:56:16 +000030 <version>1.1.0-SNAPSHOT</version>
Karl Pauls36407322008-03-07 00:37:30 +000031 <description>
32 This bundle provides an implementation of the OSGi security for Apache Felix.
33 </description>
34 <dependencies>
35 <dependency>
Karl Paulsd093f2d2009-11-24 23:23:26 +000036 <groupId>org.osgi</groupId>
Karl Pauls36407322008-03-07 00:37:30 +000037 <artifactId>org.osgi.core</artifactId>
Karl Pauls23287bd2010-01-10 22:11:27 +000038 <version>4.2.0</version>
Karl Pauls36407322008-03-07 00:37:30 +000039 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.apache.felix.framework</artifactId>
Karl Pauls7efee472010-02-07 21:33:55 +000043 <version>2.1.0-SNAPSHOT</version>
Karl Pauls36407322008-03-07 00:37:30 +000044 <scope>provided</scope>
45 </dependency>
46 </dependencies>
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <version>1.4.0</version>
53 <extensions>true</extensions>
54 <configuration>
55 <instructions>
56 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000057 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Karl Pauls36407322008-03-07 00:37:30 +000058 <Export-Package>org.osgi.service.permissionadmin;-split-package:=merge-first, org.osgi.service.condpermadmin;-split-package:=merge-first</Export-Package>
59 <Private-Package>org.apache.felix.framework.*</Private-Package>
60 <Import-Package>!*</Import-Package>
61 <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
62 <Felix-Activator>org.apache.felix.framework.SecurityActivator</Felix-Activator>
Karl Pauls6021d8b2010-02-04 22:38:57 +000063 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE</Include-Resource>
Karl Pauls36407322008-03-07 00:37:30 +000064 </instructions>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
Karl Pauls36407322008-03-07 00:37:30 +000069</project>