blob: 15a4ca25e22da6ea6640628961368694a0f9d9c5 [file] [log] [blame]
Chris Custinea1305132010-02-19 07:49:41 +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/xsd/maven-4.0.0.xsd">
Gert Vanthienen70c155b2009-12-04 15:49:54 +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 <parent>
22 <artifactId>shell</artifactId>
23 <groupId>org.apache.felix.karaf.shell</groupId>
Guillaume Nodet3107d112010-05-20 20:08:17 +000024 <version>1.7.0-SNAPSHOT</version>
Gert Vanthienen70c155b2009-12-04 15:49:54 +000025 </parent>
26
27 <modelVersion>4.0.0</modelVersion>
28
29 <artifactId>org.apache.felix.karaf.shell.dev</artifactId>
30 <packaging>bundle</packaging>
31 <name>Apache Felix Karaf :: Shell Development Commands</name>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix.karaf.shell</groupId>
36 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
37 </dependency>
38
39 <dependency>
Gert Vanthienenc97723e2009-12-06 19:10:11 +000040 <groupId>org.ops4j.pax.url</groupId>
41 <artifactId>pax-url-wrap</artifactId>
42 </dependency>
43
44 <dependency>
Gert Vanthienen70c155b2009-12-04 15:49:54 +000045 <groupId>org.apache.felix</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 <scope>provided</scope>
48 </dependency>
49
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.osgi.compendium</artifactId>
53 <scope>provided</scope>
Guillaume Nodet6c206e52010-06-11 07:20:32 +000054 </dependency>
55
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.utils</artifactId>
59 <scope>provided</scope>
60 </dependency>
Gert Vanthienen70c155b2009-12-04 15:49:54 +000061 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 <configuration>
69 <instructions>
Chris Custine3a6c68e2010-05-16 08:50:14 +000070 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Chris Custine8764d8f2010-05-16 08:24:14 +000071 <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
Gert Vanthienen70c155b2009-12-04 15:49:54 +000072 <Import-Package>
Chris Custine8764d8f2010-05-16 08:24:14 +000073 !${project.artifactId}*,
Gert Vanthienen70c155b2009-12-04 15:49:54 +000074 org.osgi.service.command,
75 org.apache.felix.gogo.commands,
76 org.apache.felix.karaf.shell.console,
77 *
78 </Import-Package>
Guillaume Nodet6c206e52010-06-11 07:20:32 +000079 <Private-Package>
80 org.apache.felix.utils.version,
81 !*
82 </Private-Package>
Gert Vanthienen70c155b2009-12-04 15:49:54 +000083 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
84 </instructions>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89
Chris Custinea1305132010-02-19 07:49:41 +000090</project>