blob: 15f4cb20a0333b5a63d3345d8abc2207835e2314 [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.packages</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 PackageAdmin Commands</name>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000035
36 <description>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000037 Provides the PackageAdmin 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>
55
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 <scope>provided</scope>
60 </dependency>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +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>
70 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000071 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000072 <Import-Package>
Guillaume Nodetc0d97722009-09-18 20:25:06 +000073 !${pom.artifactId}*,
Guillaume Nodet077bac52009-07-09 08:29:14 +000074 org.osgi.service.command,
75 org.apache.felix.gogo.commands,
Guillaume Nodet91a52c02009-09-18 20:14:54 +000076 org.apache.felix.karaf.shell.console,
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000077 *
78 </Import-Package>
79 <Private-Package>!*</Private-Package>
Guillaume Nodet3e9a4282009-05-04 16:30:02 +000080 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet91fab3b2009-04-27 10:01:58 +000081 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
Gert Vanthienen607b8522009-05-02 19:57:13 +000086</project>