Gert Vanthienen | d52c71a | 2009-12-04 15:49:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | |
| 6 | <!-- |
| 7 | |
| 8 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 9 | contributor license agreements. See the NOTICE file distributed with |
| 10 | this work for additional information regarding copyright ownership. |
| 11 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 12 | (the "License"); you may not use this file except in compliance with |
| 13 | the License. You may obtain a copy of the License at |
| 14 | |
| 15 | http://www.apache.org/licenses/LICENSE-2.0 |
| 16 | |
| 17 | Unless required by applicable law or agreed to in writing, software |
| 18 | distributed under the License is distributed on an "AS IS" BASIS, |
| 19 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 20 | See the License for the specific language governing permissions and |
| 21 | limitations under the License. |
| 22 | --> |
| 23 | |
| 24 | <parent> |
| 25 | <artifactId>shell</artifactId> |
| 26 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 27 | <version>1.3.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
| 30 | <modelVersion>4.0.0</modelVersion> |
| 31 | |
| 32 | <artifactId>org.apache.felix.karaf.shell.dev</artifactId> |
| 33 | <packaging>bundle</packaging> |
| 34 | <name>Apache Felix Karaf :: Shell Development Commands</name> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 39 | <artifactId>org.apache.felix.karaf.shell.console</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
Gert Vanthienen | 9a138e0 | 2009-12-06 19:10:11 +0000 | [diff] [blame] | 43 | <groupId>org.ops4j.pax.url</groupId> |
| 44 | <artifactId>pax-url-wrap</artifactId> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
Gert Vanthienen | d52c71a | 2009-12-04 15:49:54 +0000 | [diff] [blame] | 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>org.osgi.core</artifactId> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.osgi.compendium</artifactId> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.felix</groupId> |
| 64 | <artifactId>maven-bundle-plugin</artifactId> |
| 65 | <configuration> |
| 66 | <instructions> |
| 67 | <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> |
| 68 | <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package> |
| 69 | <Import-Package> |
| 70 | !${pom.artifactId}*, |
| 71 | org.osgi.service.command, |
| 72 | org.apache.felix.gogo.commands, |
| 73 | org.apache.felix.karaf.shell.console, |
| 74 | * |
| 75 | </Import-Package> |
| 76 | <Private-Package>!*</Private-Package> |
| 77 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| 78 | </instructions> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | </plugins> |
| 82 | </build> |
| 83 | |
| 84 | </project> |