blob: fc40840fd38aea806852d65582257b850265b698 [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>
Karl Pauls9426feb2011-09-22 11:13:37 +000023 <version>2.1</version>
Richard S. Hall1836b0c2010-01-11 13:30:42 +000024 <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 Pauls5a6b80f2014-03-20 21:41:00 +000030 <version>2.5.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>
Karl Paulsee2cd822011-09-22 15:21:53 +000034 <scm>
Karl Pauls5a6b80f2014-03-20 21:41:00 +000035 <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 Paulsee2cd822011-09-22 15:21:53 +000038 </scm>
Karl Pauls36407322008-03-07 00:37:30 +000039 <dependencies>
40 <dependency>
Karl Paulsd093f2d2009-11-24 23:23:26 +000041 <groupId>org.osgi</groupId>
Karl Pauls36407322008-03-07 00:37:30 +000042 <artifactId>org.osgi.core</artifactId>
Karl Pauls22ee38a2013-02-12 14:33:38 +000043 <version>5.0.0</version>
Karl Pauls36407322008-03-07 00:37:30 +000044 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.framework</artifactId>
Karl Pauls84884972014-03-20 21:47:24 +000048 <version>4.5.0-SNAPSHOT</version>
Karl Pauls36407322008-03-07 00:37:30 +000049 </dependency>
50 </dependencies>
51 <build>
52 <plugins>
53 <plugin>
Karl Paulsfbb32572010-05-30 22:16:56 +000054 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-compiler-plugin</artifactId>
56 <configuration>
Karl Pauls22ee38a2013-02-12 14:33:38 +000057 <target>1.3</target>
58 <source>1.3</source>
Karl Paulsfbb32572010-05-30 22:16:56 +000059 </configuration>
60 </plugin>
61 <plugin>
Karl Pauls36407322008-03-07 00:37:30 +000062 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall2e755502011-09-21 20:35:48 +000064 <version>2.3.5</version>
Karl Pauls36407322008-03-07 00:37:30 +000065 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000069 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Karl Pauls9426feb2011-09-22 11:13:37 +000070 <Export-Package>org.osgi.service.permissionadmin, org.osgi.service.condpermadmin</Export-Package>
Karl Pauls36407322008-03-07 00:37:30 +000071 <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 Pauls36407322008-03-07 00:37:30 +000075 </instructions>
Karl Pauls9426feb2011-09-22 11:13:37 +000076 <excludeDependencies>
77 org.apache.felix.framework
78 </excludeDependencies>
Karl Pauls36407322008-03-07 00:37:30 +000079 </configuration>
80 </plugin>
81 </plugins>
82 </build>
Karl Pauls36407322008-03-07 00:37:30 +000083</project>