blob: 857fadfba78dde41bdd36ab61b4362a25fb11d14 [file] [log] [blame]
Gert Vanthienen0f62b5b2009-06-06 13:57:36 +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>
26 <groupId>org.apache.felix.karaf</groupId>
27 <artifactId>karaf</artifactId>
28 <version>1.2.0-SNAPSHOT</version>
29 </parent>
30
31 <groupId>org.apache.felix.karaf</groupId>
32 <artifactId>org.apache.felix.karaf.webconsole</artifactId>
33 <packaging>bundle</packaging>
34 <version>1.2.0-SNAPSHOT</version>
Gert Vanthienen3b485602009-07-03 14:05:00 +000035 <name>Apache Felix Karaf :: Web Console Features Plugin</name>
Gert Vanthienen0f62b5b2009-06-06 13:57:36 +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>
Gert Vanthienen3b485602009-07-03 14:05:00 +000059 <groupId>commons-logging</groupId>
60 <artifactId>commons-logging</artifactId>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
Gert Vanthienen0f62b5b2009-06-06 13:57:36 +000064 <groupId>org.apache.felix.karaf.gshell</groupId>
65 <artifactId>org.apache.felix.karaf.gshell.features</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.servicemix.bundles</groupId>
69 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
70 <scope>test</scope>
71 </dependency>
Gert Vanthienen3b485602009-07-03 14:05:00 +000072 <dependency>
73 <groupId>org.json</groupId>
74 <artifactId>json</artifactId>
75 <version>20070829</version>
76 <scope>compile</scope>
77 <optional>true</optional>
78 </dependency>
Gert Vanthienen0f62b5b2009-06-06 13:57:36 +000079 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <configuration>
87 <instructions>
Gert Vanthienen3b485602009-07-03 14:05:00 +000088 <Export-Package>org.apache.felix.karaf.webconsole;version=${pom.version}</Export-Package>
89 <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>
Gert Vanthienen0f62b5b2009-06-06 13:57:36 +000094 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100</project>