blob: b8314dd5883172f24f67d894c61bb2f706c3943c [file] [log] [blame]
Gert Vanthienen968eed02009-08-17 06:17:31 +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" 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>
25 <groupId>org.apache.felix.karaf.webconsole</groupId>
26 <artifactId>webconsole</artifactId>
Guillaume Nodet3b7f8762009-09-22 09:15:21 +000027 <version>1.1.0-SNAPSHOT</version>
Gert Vanthienen968eed02009-08-17 06:17:31 +000028 </parent>
29
30 <groupId>org.apache.felix.karaf.webconsole</groupId>
31 <artifactId>org.apache.felix.karaf.webconsole.admin</artifactId>
32 <packaging>bundle</packaging>
Guillaume Nodet3b7f8762009-09-22 09:15:21 +000033 <version>1.1.0-SNAPSHOT</version>
Gert Vanthienen968eed02009-08-17 06:17:31 +000034 <name>Apache Felix Karaf :: Web Console :: Admin Plugin</name>
35
Guillaume Nodetc0d97722009-09-18 20:25:06 +000036 <properties>
37 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Gert Vanthienen968eed02009-08-17 06:17:31 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 <scope>provided</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.webconsole</artifactId>
54 <scope>provided</scope>
55 </dependency>
56 <dependency>
57 <groupId>javax.servlet</groupId>
58 <artifactId>servlet-api</artifactId>
59 <scope>provided</scope>
60 </dependency>
61 <dependency>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000062 <groupId>org.apache.felix.karaf.shell</groupId>
63 <artifactId>org.apache.felix.karaf.shell.admin</artifactId>
Guillaume Nodet3b7f8762009-09-22 09:15:21 +000064 <version>1.1.0-SNAPSHOT</version>
Gert Vanthienen968eed02009-08-17 06:17:31 +000065 <scope>provided</scope>
66 </dependency>
67 <dependency>
68 <groupId>commons-logging</groupId>
69 <artifactId>commons-logging</artifactId>
70 <scope>provided</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>
88 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Guillaume Nodetc0d97722009-09-18 20:25:06 +000089 <Import-Package>!${pom.artifactId}*,*</Import-Package>
90 <Export-Package>${pom.artifactId}*;version=${pom.version}</Export-Package>
Gert Vanthienen968eed02009-08-17 06:17:31 +000091 <Embed-Dependency>
92 <!-- Required for JSON data transfer -->
93 <!-- TODO: this needs to be put in a common place for reuse. -->
94 json
95 </Embed-Dependency>
96 </instructions>
97 </configuration>
98 </plugin>
99 </plugins>
100 </build>
101
102</project>