blob: 73a09262551f08317326b14412f5a0213204a11c [file] [log] [blame]
Guillaume Nodet91fab3b2009-04-27 10:01:58 +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>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000025 <groupId>org.apache.felix.karaf.shell</groupId>
26 <artifactId>shell</artifactId>
Guillaume Nodetabe56002009-08-25 09:03:55 +000027 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000028 </parent>
29
Guillaume Nodet91a52c02009-09-18 20:14:54 +000030 <groupId>org.apache.felix.karaf.shell</groupId>
31 <artifactId>org.apache.felix.karaf.shell.osgi</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000032 <packaging>bundle</packaging>
Guillaume Nodetabe56002009-08-25 09:03:55 +000033 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000034 <name>Apache Felix Karaf :: Shell OSGi Commands</name>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000035
36 <description>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000037 Provides the OSGi Shell commands
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000038 </description>
39
Guillaume Nodetc0d97722009-09-18 20:25:06 +000040 <properties>
41 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
42 </properties>
43
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000044 <dependencies>
45 <dependency>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000046 <groupId>org.apache.felix.karaf.shell</groupId>
47 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000048 </dependency>
49
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.osgi.core</artifactId>
53 <scope>provided</scope>
54 </dependency>
Guillaume Nodet61a6f022009-09-08 13:26:24 +000055
56 <dependency>
57 <groupId>org.springframework.osgi</groupId>
58 <artifactId>spring-osgi-core</artifactId>
59 <optional>true</optional>
60 </dependency>
61 <dependency>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000062 <groupId>org.springframework</groupId>
63 <artifactId>spring-context</artifactId>
64 <optional>true</optional>
65 </dependency>
66 <dependency>
Guillaume Nodet61a6f022009-09-08 13:26:24 +000067 <groupId>org.springframework.osgi</groupId>
68 <artifactId>spring-osgi-extender</artifactId>
69 <optional>true</optional>
70 </dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000071 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
78 <configuration>
79 <instructions>
80 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000081 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000082 <Import-Package>
Guillaume Nodetc0d97722009-09-18 20:25:06 +000083 !${pom.artifactId}*,
Guillaume Nodet077bac52009-07-09 08:29:14 +000084 org.osgi.service.command,
85 org.apache.felix.gogo.commands,
Guillaume Nodet91a52c02009-09-18 20:14:54 +000086 org.apache.felix.karaf.shell.console,
Guillaume Nodet61a6f022009-09-08 13:26:24 +000087 org.springframework*;resolution:=optional,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000088 *
89 </Import-Package>
Guillaume Nodet61a6f022009-09-08 13:26:24 +000090 <DynamicImport-Package>
91 org.springframework.*
92 </DynamicImport-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000093 <Private-Package>!*</Private-Package>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000094 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000095 </instructions>
96 </configuration>
97 </plugin>
98 </plugins>
99 </build>
Gert Vanthienen607b8522009-05-02 19:57:13 +0000100</project>