blob: 35c8059124b3ea81c66c1460577323f159f84377 [file] [log] [blame]
Gert Vanthienen1ba9a052009-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 Nodet974bf0d2009-08-07 09:48:21 +000026 <groupId>org.apache.felix.karaf.webconsole</groupId>
27 <artifactId>webconsole</artifactId>
Guillaume Nodetabe56002009-08-25 09:03:55 +000028 <version>0.9.0-SNAPSHOT</version>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000029 </parent>
30
31 <groupId>org.apache.felix.karaf.webconsole</groupId>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000032 <artifactId>org.apache.felix.karaf.webconsole.gogo</artifactId>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000033 <packaging>bundle</packaging>
Guillaume Nodetabe56002009-08-25 09:03:55 +000034 <version>0.9.0-SNAPSHOT</version>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000035 <name>Apache Felix Karaf :: Web Console :: Gogo Plugin</name>
Gert Vanthienen1ba9a052009-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>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000064 <groupId>org.apache.felix.karaf.shell</groupId>
65 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Gert Vanthienen1ba9a052009-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 Nodet5b4d76d2009-08-10 16:38:17 +000088 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000089 <Export-Package>org.apache.felix.karaf.webconsole.gogo;version=${pom.version}</Export-Package>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000090 <Embed-Dependency>
91 <!-- Required for JSON data transfer -->
92 <!-- TODO: this needs to be put in a common place for reuse. -->
93 json
94 </Embed-Dependency>
95 </instructions>
96 </configuration>
97 </plugin>
98 </plugins>
99 </build>
100
101</project>