blob: 7e7fcd2ab6564f216aebb8e6b1c7f56c9d979b78 [file] [log] [blame]
Guillaume Nodet916f28a2009-09-22 09:11:12 +00001<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 Nodet077bac52009-07-09 08:29:14 +00002
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 Nodet91a52c02009-09-18 20:14:54 +000024 <groupId>org.apache.felix.karaf.shell</groupId>
25 <artifactId>shell</artifactId>
Guillaume Nodet916f28a2009-09-22 09:11:12 +000026 <version>1.0.0</version>
Guillaume Nodet077bac52009-07-09 08:29:14 +000027 </parent>
28
Guillaume Nodet91a52c02009-09-18 20:14:54 +000029 <groupId>org.apache.felix.karaf.shell</groupId>
30 <artifactId>org.apache.felix.karaf.shell.ssh</artifactId>
Guillaume Nodet077bac52009-07-09 08:29:14 +000031 <packaging>bundle</packaging>
Guillaume Nodet916f28a2009-09-22 09:11:12 +000032 <version>1.0.0</version>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000033 <name>Apache Felix Karaf :: Shell SSH</name>
Guillaume Nodet077bac52009-07-09 08:29:14 +000034
35 <description>
36 Provides SSH support to the console
37 </description>
38
Guillaume Nodetc0d97722009-09-18 20:25:06 +000039 <properties>
40 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
41 </properties>
42
Guillaume Nodet077bac52009-07-09 08:29:14 +000043 <dependencies>
44 <dependency>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000045 <groupId>org.apache.felix.karaf.shell</groupId>
46 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Guillaume Nodet077bac52009-07-09 08:29:14 +000047 </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 Nodetc0d97722009-09-18 20:25:06 +000091 !${pom.artifactId}*,
Guillaume Nodet077bac52009-07-09 08:29:14 +000092 org.osgi.service.command,
93 org.apache.felix.gogo.commands,
Guillaume Nodet91a52c02009-09-18 20:14:54 +000094 org.apache.felix.karaf.shell.console,
Guillaume Nodet077bac52009-07-09 08:29:14 +000095 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>