blob: c80eefba83c0e7305d881e1e6d8a904e27f0b384 [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-->
19<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Karl Pauls36407322008-03-07 00:37:30 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Apache Felix Security Provider</name>
28 <artifactId>org.apache.felix.framework.security</artifactId>
29 <version>0.9.0-SNAPSHOT</version>
30 <description>
31 This bundle provides an implementation of the OSGi security for Apache Felix.
32 </description>
33 <dependencies>
34 <dependency>
Karl Paulsd093f2d2009-11-24 23:23:26 +000035 <groupId>org.osgi</groupId>
Karl Pauls36407322008-03-07 00:37:30 +000036 <artifactId>org.osgi.core</artifactId>
Karl Paulsd093f2d2009-11-24 23:23:26 +000037 <version>4.1.0</version>
Karl Pauls36407322008-03-07 00:37:30 +000038 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.apache.felix.framework</artifactId>
Karl Paulscc6082e2009-11-25 20:42:38 +000042 <version>2.1.0-SNAPSHOT</version>
Karl Pauls36407322008-03-07 00:37:30 +000043 <scope>provided</scope>
44 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <version>1.4.0</version>
52 <extensions>true</extensions>
53 <configuration>
54 <instructions>
55 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000056 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Karl Pauls36407322008-03-07 00:37:30 +000057 <Export-Package>org.osgi.service.permissionadmin;-split-package:=merge-first, org.osgi.service.condpermadmin;-split-package:=merge-first</Export-Package>
58 <Private-Package>org.apache.felix.framework.*</Private-Package>
59 <Import-Package>!*</Import-Package>
60 <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
61 <Felix-Activator>org.apache.felix.framework.SecurityActivator</Felix-Activator>
62 </instructions>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67</project>