blob: 460f6c0af1f1c143b04bbdc759339ea4e86f9377 [file] [log] [blame]
Gert Vanthienen875d1322009-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 Nodetb551feb2010-06-14 10:01:15 +000027 <version>1.6.2</version>
Gert Vanthienen875d1322009-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 Nodetb551feb2010-06-14 10:01:15 +000033 <version>1.6.2</version>
Gert Vanthienen875d1322009-08-17 06:17:31 +000034 <name>Apache Felix Karaf :: Web Console :: Admin Plugin</name>
35
Guillaume Nodete73545e2009-09-18 20:25:06 +000036 <properties>
37 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Gert Vanthienen875d1322009-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 Nodet1ebf8a52009-10-22 18:37:15 +000062 <groupId>org.apache.felix.karaf.admin</groupId>
63 <artifactId>org.apache.felix.karaf.admin.core</artifactId>
Chris Custine97f1b852010-05-11 02:43:23 +000064 <version>${project.version}</version>
Gert Vanthienen875d1322009-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>
Guillaume Nodetf30a8bc2009-10-16 16:18:55 +000079
80 <!-- Only needed while running the unit tests -->
81 <dependency>
82 <groupId>commons-fileupload</groupId>
83 <artifactId>commons-fileupload</artifactId>
84 <version>${commons.logging.version}</version>
85 <scope>test</scope>
86 </dependency>
Gert Vanthienen875d1322009-08-17 06:17:31 +000087 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-bundle-plugin</artifactId>
94 <configuration>
95 <instructions>
96 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Chris Custine80977a92010-05-16 08:24:14 +000097 <Import-Package>!${project.artifactId}*,*</Import-Package>
98 <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
Gert Vanthienen875d1322009-08-17 06:17:31 +000099 <Embed-Dependency>
100 <!-- Required for JSON data transfer -->
101 <!-- TODO: this needs to be put in a common place for reuse. -->
102 json
103 </Embed-Dependency>
104 </instructions>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109
110</project>