Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +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 | --> |
Guillaume Nodet | cf6fe21 | 2009-09-08 20:19:54 +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"> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 20 | <parent> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>gogo-parent</artifactId> |
Karl Pauls | 2decfb8 | 2010-09-22 20:14:17 +0000 | [diff] [blame] | 23 | <version>0.6.0</version> |
Karl Pauls | 14f14db | 2010-06-06 20:39:11 +0000 | [diff] [blame] | 24 | <relativePath>../gogo-parent/pom.xml</relativePath> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
Derek Baum | bd5b608 | 2010-05-13 17:32:34 +0000 | [diff] [blame] | 28 | <name>Apache Felix Gogo Runtime</name> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Guillaume Nodet | adfad51 | 2015-03-06 22:48:24 +0000 | [diff] [blame] | 30 | <version>0.16.3-SNAPSHOT</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 33 | <groupId>org.osgi</groupId> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 34 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 35 | <version>4.0.0</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 39 | <groupId>org.osgi</groupId> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 40 | <artifactId>org.osgi.compendium</artifactId> |
Richard S. Hall | df4169f | 2010-05-24 19:03:10 +0000 | [diff] [blame] | 41 | <version>4.0.0</version> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 42 | <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 Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 55 | <extensions>true</extensions> |
| 56 | <configuration> |
| 57 | <instructions> |
Guillaume Nodet | d279301 | 2014-06-13 06:42:04 +0000 | [diff] [blame] | 58 | <Export-Service> |
| 59 | org.apache.felix.service.threadio.ThreadIO, |
| 60 | org.apache.felix.service.command.CommandProcessor |
| 61 | </Export-Service> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 62 | <Export-Package> |
Richard S. Hall | a0291b0 | 2010-09-20 19:23:19 +0000 | [diff] [blame] | 63 | org.apache.felix.service.command; |
Guillaume Nodet | c8e3319 | 2011-01-05 07:49:02 +0000 | [diff] [blame] | 64 | org.apache.felix.service.threadio; version=${project.version}; status="provisional"; mandatory:="status", |
| 65 | org.apache.felix.gogo.api; version=${project.version} |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 66 | </Export-Package> |
| 67 | <Import-Package> |
Guillaume Nodet | ab11637 | 2011-01-05 01:18:51 +0000 | [diff] [blame] | 68 | org.osgi.service.event*; resolution:=optional, |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 69 | 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 Baum | 85026c5 | 2010-05-14 14:43:34 +0000 | [diff] [blame] | 74 | <Private-Package>org.apache.felix.gogo.runtime*</Private-Package> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 75 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 76 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Derek Baum | 85026c5 | 2010-05-14 14:43:34 +0000 | [diff] [blame] | 77 | <Bundle-Activator>org.apache.felix.gogo.runtime.activator.Activator</Bundle-Activator> |
Richard S. Hall | 2a4d8f5 | 2010-05-28 18:40:02 +0000 | [diff] [blame] | 78 | <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
Guillaume Nodet | 6df57bf | 2009-07-03 16:07:10 +0000 | [diff] [blame] | 79 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
Guillaume Nodet | 44d9d02 | 2009-09-08 20:09:15 +0000 | [diff] [blame] | 80 | <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 81 | </instructions> |
| 82 | </configuration> |
| 83 | </plugin> |
| 84 | </plugins> |
| 85 | </build> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 86 | </project> |