Guillaume Nodet | 077bac5 | 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> |
| 25 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 26 | <artifactId>gshell</artifactId> |
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 27 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 31 | <artifactId>org.apache.felix.karaf.gshell.ssh</artifactId> |
| 32 | <packaging>bundle</packaging> |
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 34 | <name>Apache Felix Karaf :: GShell SSH</name> |
| 35 | |
| 36 | <description> |
| 37 | Provides SSH support to the console |
| 38 | </description> |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.felix.karaf.gshell</groupId> |
| 43 | <artifactId>org.apache.felix.karaf.gshell.console</artifactId> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.osgi.core</artifactId> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.apache.felix</groupId> |
| 54 | <artifactId>org.osgi.compendium</artifactId> |
| 55 | <scope>provided</scope> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.apache.servicemix.bundles</groupId> |
| 60 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>org.apache.sshd</groupId> |
| 66 | <artifactId>sshd-core</artifactId> |
| 67 | </dependency> |
| 68 | </dependencies> |
| 69 | |
| 70 | <build> |
| 71 | <resources> |
| 72 | <resource> |
| 73 | <directory>${pom.basedir}/src/main/resources</directory> |
| 74 | <includes> |
| 75 | <include>**/*</include> |
| 76 | </includes> |
| 77 | </resource> |
| 78 | </resources> |
| 79 | <plugins> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.felix</groupId> |
| 82 | <artifactId>maven-bundle-plugin</artifactId> |
| 83 | <configuration> |
| 84 | <instructions> |
| 85 | <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName> |
| 86 | <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package> |
| 87 | <Import-Package> |
| 88 | org.osgi.service.command, |
| 89 | org.apache.felix.gogo.commands, |
| 90 | org.apache.felix.karaf.gshell.console, |
| 91 | org.apache.sshd.server.keyprovider, |
| 92 | org.apache.sshd.server.jaas, |
| 93 | * |
| 94 | </Import-Package> |
| 95 | <Private-Package>org.apache.felix.karaf.jpm.*</Private-Package> |
| 96 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| 97 | </instructions> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
| 102 | </project> |