blob: 341c46c5087bdc22025bf442ec6cf98c407a290d [file] [log] [blame]
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +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-->
Guillaume Nodetd7019d02009-09-08 20:19:54 +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">
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000020 <parent>
Richard S. Hall17f23022010-05-24 19:03:10 +000021 <groupId>org.apache.felix</groupId>
22 <artifactId>gogo-parent</artifactId>
Karl Paulsa8ceea92010-09-22 20:14:17 +000023 <version>0.6.0</version>
Karl Pauls94ab71c2010-06-06 20:39:11 +000024 <relativePath>../gogo-parent/pom.xml</relativePath>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Derek Baum99446702010-05-13 17:32:34 +000028 <name>Apache Felix Gogo Runtime</name>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000029 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Richard S. Hall0cac8782011-06-16 15:48:49 +000030 <version>0.11.0-SNAPSHOT</version>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000031 <dependencies>
32 <dependency>
Richard S. Hall17f23022010-05-24 19:03:10 +000033 <groupId>org.osgi</groupId>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Hall17f23022010-05-24 19:03:10 +000035 <version>4.0.0</version>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
Richard S. Hall17f23022010-05-24 19:03:10 +000039 <groupId>org.osgi</groupId>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000040 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall17f23022010-05-24 19:03:10 +000041 <version>4.0.0</version>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000042 <scope>provided</scope>
43 </dependency>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000055 <extensions>true</extensions>
56 <configuration>
57 <instructions>
58 <Export-Package>
Richard S. Halla8b7b6d2010-09-20 19:23:19 +000059 org.apache.felix.service.command;
Guillaume Nodete93bc4d2011-01-05 07:49:02 +000060 org.apache.felix.service.threadio; version=${project.version}; status="provisional"; mandatory:="status",
61 org.apache.felix.gogo.api; version=${project.version}
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000062 </Export-Package>
63 <Import-Package>
Guillaume Nodet6010cbf2011-01-05 01:18:51 +000064 org.osgi.service.event*; resolution:=optional,
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000065 org.osgi.service.log*; resolution:=optional,
66 org.osgi.service.packageadmin*; resolution:=optional,
67 org.osgi.service.startlevel*; resolution:=optional,
68 *
69 </Import-Package>
Derek Baum487a65e2010-05-14 14:43:34 +000070 <Private-Package>org.apache.felix.gogo.runtime*</Private-Package>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000071 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
72 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Derek Baum487a65e2010-05-14 14:43:34 +000073 <Bundle-Activator>org.apache.felix.gogo.runtime.activator.Activator</Bundle-Activator>
Richard S. Hall7149f842010-05-28 18:40:02 +000074 <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Guillaume Nodetc056e1c2009-07-03 16:07:10 +000075 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Guillaume Nodet57770cd2009-09-08 20:09:15 +000076 <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000077 </instructions>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000082</project>