blob: 27b06ca9e56c4d65ba5c50ee83f90a39cf2479d0 [file] [log] [blame]
Guillaume Nodet22d03c62009-05-06 14:40:12 +00001<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>
27 <version>1.2.0-SNAPSHOT</version>
28 </parent>
29
30 <groupId>org.apache.felix.karaf.gshell</groupId>
31 <artifactId>org.apache.felix.karaf.gshell.run</artifactId>
32 <packaging>bundle</packaging>
33 <version>1.2.0-SNAPSHOT</version>
34 <name>Apache Felix Karaf :: GShell Run</name>
35
36 <description>
37 GShell configuration
38 </description>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix.karaf.gshell</groupId>
43 <artifactId>org.apache.felix.karaf.gshell.core</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.springframework.osgi</groupId>
54 <artifactId>spring-osgi-core</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.springframework.osgi</groupId>
59 <artifactId>spring-osgi-extender</artifactId>
60 </dependency>
61 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 <configuration>
69 <instructions>
70 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
Guillaume Nodet22d03c62009-05-06 14:40:12 +000071 <Import-Package>
72 org.apache.commons.vfs,
73 org.apache.commons.vfs.cache,
74 org.apache.commons.vfs.impl,
75 org.apache.commons.vfs.provider.url,
76 org.apache.commons.vfs.provider.temp,
77 org.apache.commons.vfs.provider.ram,
78 org.apache.commons.vfs.provider.local,
Guillaume Nodetab61d2b2009-05-06 16:00:19 +000079 org.apache.felix.karaf.gshell.core,
80 org.apache.felix.karaf.gshell.core.commands,
81 org.apache.felix.karaf.gshell.core.config,
82 org.apache.felix.karaf.gshell.core.sshd,
83 org.apache.felix.karaf.gshell.core.vfs.mvn,
84 org.apache.geronimo.gshell.ansi,
85 org.apache.geronimo.gshell.application,
86 org.apache.geronimo.gshell.application.model,
87 org.apache.geronimo.gshell.application.plugin,
88 org.apache.geronimo.gshell.application.plugin.activation,
89 org.apache.geronimo.gshell.application.plugin.bundle,
90 org.apache.geronimo.gshell.chronos,
91 org.apache.geronimo.gshell.clp,
92 org.apache.geronimo.gshell.clp.handler,
93 org.apache.geronimo.gshell.clp.setter,
94 org.apache.geronimo.gshell.command,
95 org.apache.geronimo.gshell.commandline,
96 org.apache.geronimo.gshell.commands.builtin,
97 org.apache.geronimo.gshell.commands.file,
98 org.apache.geronimo.gshell.commands.network,
99 org.apache.geronimo.gshell.commands.shell,
100 org.apache.geronimo.gshell.commands.ssh,
101 org.apache.geronimo.gshell.commands.text,
102 org.apache.geronimo.gshell.console,
103 org.apache.geronimo.gshell.console.completer,
104 org.apache.geronimo.gshell.event,
105 org.apache.geronimo.gshell.i18n,
106 org.apache.geronimo.gshell.interpolation,
107 org.apache.geronimo.gshell.io,
108 org.apache.geronimo.gshell.notification,
109 org.apache.geronimo.gshell.parser,
110 org.apache.geronimo.gshell.parser.visitor,
111 org.apache.geronimo.gshell.registry,
112 org.apache.geronimo.gshell.shell,
113 org.apache.geronimo.gshell.spring,
114 org.apache.geronimo.gshell.terminal,
115 org.apache.geronimo.gshell.vfs,
116 org.apache.geronimo.gshell.vfs.config,
117 org.apache.geronimo.gshell.vfs.provider.meta,
118 org.apache.geronimo.gshell.vfs.provider.meta.data,
119 org.apache.geronimo.gshell.wisdom.application,
120 org.apache.geronimo.gshell.wisdom.branding,
121 org.apache.geronimo.gshell.wisdom.builder,
122 org.apache.geronimo.gshell.wisdom.command,
123 org.apache.geronimo.gshell.wisdom.completer,
124 org.apache.geronimo.gshell.wisdom.config,
125 org.apache.geronimo.gshell.wisdom.meta,
126 org.apache.geronimo.gshell.wisdom.plugin,
127 org.apache.geronimo.gshell.wisdom.plugin.activation,
128 org.apache.geronimo.gshell.wisdom.plugin.bundle,
129 org.apache.geronimo.gshell.wisdom.registry,
130 org.apache.geronimo.gshell.wisdom.scope,
131 org.apache.geronimo.gshell.wisdom.shell,
Guillaume Nodet22d03c62009-05-06 14:40:12 +0000132 org.apache.sshd,
133 org.apache.sshd.server.keyprovider,
134 org.apache.sshd.server.jaas,
Guillaume Nodet6b2946d2009-06-18 20:57:23 +0000135 org.osgi.service.blueprint.container,
Guillaume Nodet22d03c62009-05-06 14:40:12 +0000136 *
137 </Import-Package>
Guillaume Nodet22d03c62009-05-06 14:40:12 +0000138 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
139 </instructions>
140 </configuration>
141 </plugin>
142 </plugins>
143 </build>
144</project>