blob: 82f5ed0842b740211582328075faec9c4fb1b3d7 [file] [log] [blame]
Guillaume Nodetccfc3d82009-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>
71 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
72 <Import-Package>
73 org.apache.commons.vfs,
74 org.apache.commons.vfs.cache,
75 org.apache.commons.vfs.impl,
76 org.apache.commons.vfs.provider.url,
77 org.apache.commons.vfs.provider.temp,
78 org.apache.commons.vfs.provider.ram,
79 org.apache.commons.vfs.provider.local,
Guillaume Nodetb994b552009-05-06 16:00:19 +000080 org.apache.felix.karaf.gshell.core,
81 org.apache.felix.karaf.gshell.core.commands,
82 org.apache.felix.karaf.gshell.core.config,
83 org.apache.felix.karaf.gshell.core.sshd,
84 org.apache.felix.karaf.gshell.core.vfs.mvn,
85 org.apache.geronimo.gshell.ansi,
86 org.apache.geronimo.gshell.application,
87 org.apache.geronimo.gshell.application.model,
88 org.apache.geronimo.gshell.application.plugin,
89 org.apache.geronimo.gshell.application.plugin.activation,
90 org.apache.geronimo.gshell.application.plugin.bundle,
91 org.apache.geronimo.gshell.chronos,
92 org.apache.geronimo.gshell.clp,
93 org.apache.geronimo.gshell.clp.handler,
94 org.apache.geronimo.gshell.clp.setter,
95 org.apache.geronimo.gshell.command,
96 org.apache.geronimo.gshell.commandline,
97 org.apache.geronimo.gshell.commands.builtin,
98 org.apache.geronimo.gshell.commands.file,
99 org.apache.geronimo.gshell.commands.network,
100 org.apache.geronimo.gshell.commands.shell,
101 org.apache.geronimo.gshell.commands.ssh,
102 org.apache.geronimo.gshell.commands.text,
103 org.apache.geronimo.gshell.console,
104 org.apache.geronimo.gshell.console.completer,
105 org.apache.geronimo.gshell.event,
106 org.apache.geronimo.gshell.i18n,
107 org.apache.geronimo.gshell.interpolation,
108 org.apache.geronimo.gshell.io,
109 org.apache.geronimo.gshell.notification,
110 org.apache.geronimo.gshell.parser,
111 org.apache.geronimo.gshell.parser.visitor,
112 org.apache.geronimo.gshell.registry,
113 org.apache.geronimo.gshell.shell,
114 org.apache.geronimo.gshell.spring,
115 org.apache.geronimo.gshell.terminal,
116 org.apache.geronimo.gshell.vfs,
117 org.apache.geronimo.gshell.vfs.config,
118 org.apache.geronimo.gshell.vfs.provider.meta,
119 org.apache.geronimo.gshell.vfs.provider.meta.data,
120 org.apache.geronimo.gshell.wisdom.application,
121 org.apache.geronimo.gshell.wisdom.branding,
122 org.apache.geronimo.gshell.wisdom.builder,
123 org.apache.geronimo.gshell.wisdom.command,
124 org.apache.geronimo.gshell.wisdom.completer,
125 org.apache.geronimo.gshell.wisdom.config,
126 org.apache.geronimo.gshell.wisdom.meta,
127 org.apache.geronimo.gshell.wisdom.plugin,
128 org.apache.geronimo.gshell.wisdom.plugin.activation,
129 org.apache.geronimo.gshell.wisdom.plugin.bundle,
130 org.apache.geronimo.gshell.wisdom.registry,
131 org.apache.geronimo.gshell.wisdom.scope,
132 org.apache.geronimo.gshell.wisdom.shell,
Guillaume Nodetccfc3d82009-05-06 14:40:12 +0000133 org.apache.sshd,
134 org.apache.sshd.server.keyprovider,
135 org.apache.sshd.server.jaas,
136 org.springframework.beans.factory.config,
137 *
138 </Import-Package>
Guillaume Nodetccfc3d82009-05-06 14:40:12 +0000139 <Spring-Context>*;publish-context:=false;create-asynchronously:=true</Spring-Context>
140 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
141 </instructions>
142 </configuration>
143 </plugin>
144 </plugins>
145 </build>
146</project>