blob: 515095aeccc608b314b0c2b885be573b89e3a5de [file] [log] [blame]
Guillaume Nodet907d4b12009-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 Nodetcf6fe212009-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 Nodet907d4b12009-06-30 20:52:04 +000020 <parent>
Richard S. Halldf4169f2010-05-24 19:03:10 +000021 <groupId>org.apache.felix</groupId>
22 <artifactId>gogo-parent</artifactId>
Karl Pauls2decfb82010-09-22 20:14:17 +000023 <version>0.6.0</version>
Karl Pauls14f14db2010-06-06 20:39:11 +000024 <relativePath>../gogo-parent/pom.xml</relativePath>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Derek Baumbd5b6082010-05-13 17:32:34 +000028 <name>Apache Felix Gogo Runtime</name>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000029 <artifactId>org.apache.felix.gogo.runtime</artifactId>
Guillaume Nodetadfad512015-03-06 22:48:24 +000030 <version>0.16.3-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000031 <dependencies>
32 <dependency>
Richard S. Halldf4169f2010-05-24 19:03:10 +000033 <groupId>org.osgi</groupId>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Halldf4169f2010-05-24 19:03:10 +000035 <version>4.0.0</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
Richard S. Halldf4169f2010-05-24 19:03:10 +000039 <groupId>org.osgi</groupId>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000040 <artifactId>org.osgi.compendium</artifactId>
Richard S. Halldf4169f2010-05-24 19:03:10 +000041 <version>4.0.0</version>
Guillaume Nodet907d4b12009-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 Nodet907d4b12009-06-30 20:52:04 +000055 <extensions>true</extensions>
56 <configuration>
57 <instructions>
Guillaume Nodetd2793012014-06-13 06:42:04 +000058 <Export-Service>
59 org.apache.felix.service.threadio.ThreadIO,
60 org.apache.felix.service.command.CommandProcessor
61 </Export-Service>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000062 <Export-Package>
Richard S. Halla0291b02010-09-20 19:23:19 +000063 org.apache.felix.service.command;
Guillaume Nodetc8e33192011-01-05 07:49:02 +000064 org.apache.felix.service.threadio; version=${project.version}; status="provisional"; mandatory:="status",
65 org.apache.felix.gogo.api; version=${project.version}
Guillaume Nodet907d4b12009-06-30 20:52:04 +000066 </Export-Package>
67 <Import-Package>
Guillaume Nodetab116372011-01-05 01:18:51 +000068 org.osgi.service.event*; resolution:=optional,
Guillaume Nodet907d4b12009-06-30 20:52:04 +000069 org.osgi.service.log*; resolution:=optional,
70 org.osgi.service.packageadmin*; resolution:=optional,
71 org.osgi.service.startlevel*; resolution:=optional,
72 *
73 </Import-Package>
Derek Baum85026c52010-05-14 14:43:34 +000074 <Private-Package>org.apache.felix.gogo.runtime*</Private-Package>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000075 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
76 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Derek Baum85026c52010-05-14 14:43:34 +000077 <Bundle-Activator>org.apache.felix.gogo.runtime.activator.Activator</Bundle-Activator>
Richard S. Hall2a4d8f52010-05-28 18:40:02 +000078 <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Guillaume Nodet6df57bf2009-07-03 16:07:10 +000079 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
Guillaume Nodet44d9d022009-09-08 20:09:15 +000080 <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000081 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000086</project>