blob: f7edf26be25afa4490d34fa258b0ab28ddaef638 [file] [log] [blame]
Gert Vanthienen14110c12009-08-06 21:36:13 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5 <!--
6
7 Licensed to the Apache Software Foundation (ASF) under one or more
8 contributor license agreements. See the NOTICE file distributed with
9 this work for additional information regarding copyright ownership.
10 The ASF licenses this file to You under the Apache License, Version 2.0
11 (the "License"); you may not use this file except in compliance with
12 the License. You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21 -->
22
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
Guillaume Nodet756cf8e2009-08-07 09:48:21 +000026 <groupId>org.apache.felix.karaf.webconsole</groupId>
27 <artifactId>webconsole</artifactId>
28 <version>1.2.0-SNAPSHOT</version>
Gert Vanthienen14110c12009-08-06 21:36:13 +000029 </parent>
30
31 <groupId>org.apache.felix.karaf.webconsole</groupId>
Guillaume Nodet756cf8e2009-08-07 09:48:21 +000032 <artifactId>org.apache.felix.karaf.webconsole.gogo</artifactId>
Gert Vanthienen14110c12009-08-06 21:36:13 +000033 <packaging>bundle</packaging>
34 <version>1.2.0-SNAPSHOT</version>
Guillaume Nodet756cf8e2009-08-07 09:48:21 +000035 <name>Apache Felix Karaf :: Web Console :: Gogo Plugin</name>
Gert Vanthienen14110c12009-08-06 21:36:13 +000036
37 <dependencies>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.osgi.core</artifactId>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.webconsole</artifactId>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>javax.servlet</groupId>
55 <artifactId>servlet-api</artifactId>
56 <scope>provided</scope>
57 </dependency>
58 <dependency>
59 <groupId>commons-logging</groupId>
60 <artifactId>commons-logging</artifactId>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.felix.karaf.gshell</groupId>
Guillaume Nodet756cf8e2009-08-07 09:48:21 +000065 <artifactId>org.apache.felix.karaf.gshell.console</artifactId>
Gert Vanthienen14110c12009-08-06 21:36:13 +000066 </dependency>
67 <dependency>
68 <groupId>org.apache.servicemix.bundles</groupId>
69 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.json</groupId>
74 <artifactId>json</artifactId>
75 <version>20070829</version>
76 <scope>compile</scope>
77 <optional>true</optional>
78 </dependency>
79 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <configuration>
87 <instructions>
Guillaume Nodet756cf8e2009-08-07 09:48:21 +000088 <Export-Package>org.apache.felix.karaf.webconsole.gogo;version=${pom.version}</Export-Package>
Gert Vanthienen14110c12009-08-06 21:36:13 +000089 <Embed-Dependency>
90 <!-- Required for JSON data transfer -->
91 <!-- TODO: this needs to be put in a common place for reuse. -->
92 json
93 </Embed-Dependency>
94 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100</project>