blob: dc0710ec040a33a1db219cb8ec1a3c317e9dc16b [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 Paulsfeb48f02010-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. Hallc2c5d9c2010-01-11 13:30:42 +000022 <artifactId>felix-parent</artifactId>
Karl Paulsbe381f62011-09-22 11:13:37 +000023 <version>2.1</version>
Richard S. Hallc2c5d9c2010-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>
Brian O'Connor00f20aa2015-05-20 14:31:23 -070030 <version>2.2.0.onos-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 Paulsfd571de2011-09-22 15:21:53 +000034 <scm>
Karl Paulsd4d93112013-03-08 21:12:26 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</developerConnection>
37 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.framework.security-2.2.0</url>
Karl Paulsfd571de2011-09-22 15:21:53 +000038 </scm>
Karl Pauls36407322008-03-07 00:37:30 +000039 <dependencies>
40 <dependency>
Karl Pauls12c46d32009-11-24 23:23:26 +000041 <groupId>org.osgi</groupId>
Karl Pauls36407322008-03-07 00:37:30 +000042 <artifactId>org.osgi.core</artifactId>
Karl Pauls3a74f872013-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 Pauls093fd0f2013-03-08 21:11:43 +000048 <version>4.2.1</version>
Karl Pauls36407322008-03-07 00:37:30 +000049 </dependency>
50 </dependencies>
51 <build>
52 <plugins>
53 <plugin>
Karl Pauls70c4bdb2010-05-30 22:16:56 +000054 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-compiler-plugin</artifactId>
56 <configuration>
Karl Pauls3a74f872013-02-12 14:33:38 +000057 <target>1.3</target>
58 <source>1.3</source>
Karl Pauls70c4bdb2010-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. Hallb5259902011-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 Ziegeler90f0b9f2008-04-17 06:33:59 +000069 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Karl Paulsbe381f62011-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 Paulsbe381f62011-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>