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 | --> |
Karl Pauls | 77beac3 | 2010-02-04 23:04:42 +0000 | [diff] [blame] | 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"> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 1836b0c | 2010-01-11 13:30:42 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Karl Pauls | 9426feb | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Richard S. Hall | 1836b0c | 2010-01-11 13:30:42 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 25 | </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 Pauls | 177f0e8 | 2011-11-20 20:41:30 +0000 | [diff] [blame] | 30 | <version>2.1.0-SNAPSHOT</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 31 | <description> |
| 32 | This bundle provides an implementation of the OSGi security for Apache Felix. |
| 33 | </description> |
Karl Pauls | ee2cd82 | 2011-09-22 15:21:53 +0000 | [diff] [blame] | 34 | <scm> |
Karl Pauls | 177f0e8 | 2011-11-20 20:41:30 +0000 | [diff] [blame] | 35 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/framework.security</connection> |
| 36 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/framework.security</developerConnection> |
| 37 | <url>http://svn.apache.org/repos/asf/felix/framework.security</url> |
Karl Pauls | ee2cd82 | 2011-09-22 15:21:53 +0000 | [diff] [blame] | 38 | </scm> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
Karl Pauls | d093f2d | 2009-11-24 23:23:26 +0000 | [diff] [blame] | 41 | <groupId>org.osgi</groupId> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 42 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | f6756bd | 2011-09-09 12:50:01 +0000 | [diff] [blame] | 43 | <version>4.3.0</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${pom.groupId}</groupId> |
| 47 | <artifactId>org.apache.felix.framework</artifactId> |
Karl Pauls | bcba0a6 | 2012-07-25 11:40:26 +0000 | [diff] [blame] | 48 | <version>4.0.3</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 49 | </dependency> |
| 50 | </dependencies> |
| 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
Karl Pauls | fbb3257 | 2010-05-30 22:16:56 +0000 | [diff] [blame] | 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-compiler-plugin</artifactId> |
| 56 | <configuration> |
| 57 | <target>jsr14</target> |
| 58 | <source>1.5</source> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | <plugin> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 2e75550 | 2011-09-21 20:35:48 +0000 | [diff] [blame] | 64 | <version>2.3.5</version> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 65 | <extensions>true</extensions> |
| 66 | <configuration> |
| 67 | <instructions> |
| 68 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 69 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Karl Pauls | 9426feb | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 70 | <Export-Package>org.osgi.service.permissionadmin, org.osgi.service.condpermadmin</Export-Package> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 71 | <Private-Package>org.apache.felix.framework.*</Private-Package> |
| 72 | <Import-Package>!*</Import-Package> |
| 73 | <Fragment-Host>system.bundle; extension:=framework</Fragment-Host> |
| 74 | <Felix-Activator>org.apache.felix.framework.SecurityActivator</Felix-Activator> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 75 | </instructions> |
Karl Pauls | 9426feb | 2011-09-22 11:13:37 +0000 | [diff] [blame] | 76 | <excludeDependencies> |
| 77 | org.apache.felix.framework |
| 78 | </excludeDependencies> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 79 | </configuration> |
| 80 | </plugin> |
| 81 | </plugins> |
| 82 | </build> |
Karl Pauls | 3640732 | 2008-03-07 00:37:30 +0000 | [diff] [blame] | 83 | </project> |