blob: 6bf1d974da4ec87f57160bf1685fe6f390411f73 [file] [log] [blame]
Guillaume Nodet05fac962009-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>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000025 <groupId>org.apache.felix.karaf.gshell</groupId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000026 <artifactId>gshell</artifactId>
27 <version>1.2.0-SNAPSHOT</version>
28 </parent>
29
Gert Vanthienenf54a8392009-05-02 19:57:13 +000030 <groupId>org.apache.felix.karaf.gshell</groupId>
31 <artifactId>org.apache.felix.karaf.gshell.config</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000032 <packaging>bundle</packaging>
33 <version>1.2.0-SNAPSHOT</version>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000034 <name>Apache Felix Karaf :: GShell ConfigAdmin Commands</name>
Guillaume Nodet05fac962009-04-27 10:01:58 +000035
36 <description>
37 Provides the ConfigAdmin GShell commands
38 </description>
39
40 <dependencies>
41 <dependency>
Gert Vanthienenf54a8392009-05-02 19:57:13 +000042 <groupId>org.apache.felix.karaf.gshell</groupId>
43 <artifactId>org.apache.felix.karaf.gshell.core</artifactId>
Guillaume Nodet05fac962009-04-27 10:01:58 +000044 </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.apache.felix</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
55 <scope>provided</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.springframework.osgi</groupId>
60 <artifactId>spring-osgi-core</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>org.apache.geronimo.specs</groupId>
65 <artifactId>geronimo-annotation_1.0_spec</artifactId>
66 </dependency>
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 <configuration>
75 <instructions>
76 <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
Guillaume Nodet4e32cd62009-05-04 16:30:02 +000077 <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
Guillaume Nodet05fac962009-04-27 10:01:58 +000078 <Import-Package>
Guillaume Nodete753e782009-05-07 13:19:47 +000079 org.apache.geronimo.gshell.command,
Guillaume Nodet05fac962009-04-27 10:01:58 +000080 org.apache.geronimo.gshell.wisdom.command,
81 org.apache.geronimo.gshell.wisdom.registry,
Gert Vanthienenf54a8392009-05-02 19:57:13 +000082 org.apache.felix.karaf.gshell.core,
Guillaume Nodet05fac962009-04-27 10:01:58 +000083 *
84 </Import-Package>
85 <Private-Package>!*</Private-Package>
Guillaume Nodet4e32cd62009-05-04 16:30:02 +000086 <_versionpolicy>${bnd.version.policy}</_versionpolicy>
Guillaume Nodet05fac962009-04-27 10:01:58 +000087 </instructions>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92</project>