blob: 36bdf5e076512969b54f06ee4176c361024d0e21 [file] [log] [blame]
Chris Custine49ce9402010-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 Vanthienend52c71a2009-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 Nodetdddb4e52010-06-15 09:09:47 +000024 <version>1.6.2</version>
Gert Vanthienend52c71a2009-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 Vanthienen9a138e02009-12-06 19:10:11 +000040 <groupId>org.ops4j.pax.url</groupId>
41 <artifactId>pax-url-wrap</artifactId>
42 </dependency>
43
44 <dependency>
Gert Vanthienend52c71a2009-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 Nodet2eda1e72010-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 Vanthienend52c71a2009-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 Custine60ecb332010-05-16 08:50:14 +000070 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Chris Custine80977a92010-05-16 08:24:14 +000071 <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
Gert Vanthienend52c71a2009-12-04 15:49:54 +000072 <Import-Package>
Chris Custine80977a92010-05-16 08:24:14 +000073 !${project.artifactId}*,
Gert Vanthienend52c71a2009-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 Nodet2eda1e72010-06-11 07:20:32 +000079 <Private-Package>
80 org.apache.felix.utils.version,
81 !*
82 </Private-Package>
Gert Vanthienend52c71a2009-12-04 15:49:54 +000083 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
84 </instructions>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89
Chris Custine49ce9402010-02-19 07:49:41 +000090</project>