Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 24 | </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> |
| 35 | <groupId>${pom.groupId}</groupId> |
| 36 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 17bd0b7 | 2008-11-17 21:08:35 +0000 | [diff] [blame] | 37 | <version>1.2.0</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.apache.felix.framework</artifactId> |
Karl Pauls | 6fdbec6 | 2009-02-18 21:42:43 +0000 | [diff] [blame] | 42 | <version>1.4.1</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 43 | <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 Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 56 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 57 | <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> |