Guillaume Nodet | 338d236 | 2016-03-21 16:52:52 +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 | --> |
| 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"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>gogo-parent</artifactId> |
| 23 | <version>0.6.0</version> |
| 24 | <relativePath>../gogo-parent/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Gogo Runtime</name> |
| 29 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 30 | <version>0.16.3-SNAPSHOT</version> |
Guillaume Nodet | f738827 | 2016-03-21 16:53:15 +0000 | [diff] [blame] | 31 | <properties> |
Guillaume Nodet | 1fd93a7 | 2016-03-21 16:54:09 +0000 | [diff] [blame] | 32 | <!-- Skip because of NPE --> |
| 33 | <animal.sniffer.skip>true</animal.sniffer.skip> |
Guillaume Nodet | f738827 | 2016-03-21 16:53:15 +0000 | [diff] [blame] | 34 | <felix.java.version>8</felix.java.version> |
| 35 | </properties> |
Guillaume Nodet | 338d236 | 2016-03-21 16:52:52 +0000 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.osgi</groupId> |
| 39 | <artifactId>org.osgi.core</artifactId> |
| 40 | <version>4.0.0</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.osgi</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
| 46 | <version>4.0.0</version> |
| 47 | <scope>provided</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>junit</groupId> |
| 51 | <artifactId>junit</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix</groupId> |
| 59 | <artifactId>maven-bundle-plugin</artifactId> |
Guillaume Nodet | 1fd93a7 | 2016-03-21 16:54:09 +0000 | [diff] [blame] | 60 | <version>3.0.0</version> |
Guillaume Nodet | 338d236 | 2016-03-21 16:52:52 +0000 | [diff] [blame] | 61 | <extensions>true</extensions> |
| 62 | <configuration> |
| 63 | <instructions> |
| 64 | <Export-Service> |
| 65 | org.apache.felix.service.threadio.ThreadIO, |
| 66 | org.apache.felix.service.command.CommandProcessor |
| 67 | </Export-Service> |
| 68 | <Export-Package> |
| 69 | org.apache.felix.service.command; |
| 70 | org.apache.felix.service.threadio; version=${project.version}; status="provisional"; mandatory:="status", |
| 71 | org.apache.felix.gogo.api; version=${project.version} |
| 72 | </Export-Package> |
| 73 | <Import-Package> |
| 74 | org.osgi.service.event*; resolution:=optional, |
| 75 | org.osgi.service.log*; resolution:=optional, |
| 76 | org.osgi.service.packageadmin*; resolution:=optional, |
| 77 | org.osgi.service.startlevel*; resolution:=optional, |
| 78 | * |
| 79 | </Import-Package> |
| 80 | <Private-Package>org.apache.felix.gogo.runtime*</Private-Package> |
| 81 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 82 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 83 | <Bundle-Activator>org.apache.felix.gogo.runtime.activator.Activator</Bundle-Activator> |
| 84 | <Include-Resource>{maven-resources},META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
| 85 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
| 86 | <_removeheaders>Private-Package,Ignore-Package,Include-Resource</_removeheaders> |
| 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
Guillaume Nodet | ef58ab2 | 2016-03-21 16:53:39 +0000 | [diff] [blame] | 90 | <plugin> |
| 91 | <artifactId>maven-compiler-plugin</artifactId> |
| 92 | <configuration> |
| 93 | <source>1.8</source> |
| 94 | <target>1.8</target> |
| 95 | </configuration> |
| 96 | </plugin> |
Guillaume Nodet | 338d236 | 2016-03-21 16:52:52 +0000 | [diff] [blame] | 97 | </plugins> |
| 98 | </build> |
Guillaume Nodet | 907d4b1 | 2009-06-30 20:52:04 +0000 | [diff] [blame] | 99 | </project> |