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