Guillaume Nodet | 6df57bf | 2009-07-03 16:07:10 +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" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
| 22 | <groupId>org.apache.felix.gogo</groupId> |
| 23 | <artifactId>gogo</artifactId> |
Richard S. Hall | d8c88e0 | 2009-07-03 21:29:18 +0000 | [diff] [blame] | 24 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 6df57bf | 2009-07-03 16:07:10 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Gogo Shell Commands</name> |
| 29 | <artifactId>org.apache.felix.gogo.commands</artifactId> |
Richard S. Hall | d8c88e0 | 2009-07-03 21:29:18 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 6df57bf | 2009-07-03 16:07:10 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.felix.gogo</groupId> |
| 44 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
| 52 | <version>2.0.0</version> |
| 53 | <extensions>true</extensions> |
| 54 | <configuration> |
| 55 | <instructions> |
| 56 | <Export-Package> |
| 57 | org.apache.felix.gogo.commands*;version=${pom.version}, |
| 58 | </Export-Package> |
| 59 | <Import-Package> |
| 60 | !org.apache.felix.gogo.commands.basic, |
| 61 | !org.apache.felix.gogo.commands.converter, |
| 62 | * |
| 63 | </Import-Package> |
| 64 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 65 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 66 | <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> |
| 67 | <_removeheaders>Private-Package,Ignore-Package</_removeheaders> |
| 68 | </instructions> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | </project> |