Guillaume Nodet | 6896d70 | 2009-09-22 09:11:12 +0000 | [diff] [blame] | 1 | <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 | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 2 | |
| 3 | <!-- |
| 4 | |
| 5 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 6 | contributor license agreements. See the NOTICE file distributed with |
| 7 | this work for additional information regarding copyright ownership. |
| 8 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 9 | (the "License"); you may not use this file except in compliance with |
| 10 | the License. You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | --> |
| 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
Guillaume Nodet | 23a0f3d | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 25 | <artifactId>shell</artifactId> |
Guillaume Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 26 | <version>1.3.0-SNAPSHOT</version> |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
Guillaume Nodet | 23a0f3d | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 30 | <artifactId>org.apache.felix.karaf.shell.ssh</artifactId> |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Guillaume Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Guillaume Nodet | 23a0f3d | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 33 | <name>Apache Felix Karaf :: Shell SSH</name> |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 34 | |
| 35 | <description> |
| 36 | Provides SSH support to the console |
| 37 | </description> |
| 38 | |
Guillaume Nodet | e73545e | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 39 | <properties> |
| 40 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 41 | </properties> |
| 42 | |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 43 | <dependencies> |
| 44 | <dependency> |
Guillaume Nodet | 23a0f3d | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 45 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 46 | <artifactId>org.apache.felix.karaf.shell.console</artifactId> |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>org.osgi.core</artifactId> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.apache.felix</groupId> |
| 57 | <artifactId>org.osgi.compendium</artifactId> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.apache.servicemix.bundles</groupId> |
| 63 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.apache.sshd</groupId> |
| 69 | <artifactId>sshd-core</artifactId> |
| 70 | </dependency> |
| 71 | </dependencies> |
| 72 | |
| 73 | <build> |
| 74 | <resources> |
| 75 | <resource> |
| 76 | <directory>${pom.basedir}/src/main/resources</directory> |
| 77 | <includes> |
| 78 | <include>**/*</include> |
| 79 | </includes> |
| 80 | </resource> |
| 81 | </resources> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.felix</groupId> |
| 85 | <artifactId>maven-bundle-plugin</artifactId> |
| 86 | <configuration> |
| 87 | <instructions> |
| 88 | <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> |
| 89 | <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package> |
| 90 | <Import-Package> |
Guillaume Nodet | e73545e | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 91 | !${pom.artifactId}*, |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 92 | org.osgi.service.command, |
| 93 | org.apache.felix.gogo.commands, |
Guillaume Nodet | 23a0f3d | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 94 | org.apache.felix.karaf.shell.console, |
Guillaume Nodet | 129433d | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 95 | org.apache.sshd.server.keyprovider, |
| 96 | org.apache.sshd.server.jaas, |
| 97 | * |
| 98 | </Import-Package> |
| 99 | <Private-Package>org.apache.felix.karaf.jpm.*</Private-Package> |
| 100 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| 101 | </instructions> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
| 106 | </project> |