blob: 5283e8411c83a8cd278dda24cf67e594345e9e96 [file] [log] [blame]
Gert Vanthienen1ba9a052009-08-06 21:36:13 +00001<?xml version="1.0" encoding="UTF-8"?>
Guillaume Nodet916f28a2009-09-22 09:11:12 +00002<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">
Gert Vanthienen1ba9a052009-08-06 21:36:13 +00003
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>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000025 <groupId>org.apache.felix.karaf.webconsole</groupId>
26 <artifactId>webconsole</artifactId>
Guillaume Nodet916f28a2009-09-22 09:11:12 +000027 <version>1.0.0</version>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000028 </parent>
29
30 <groupId>org.apache.felix.karaf.webconsole</groupId>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000031 <artifactId>org.apache.felix.karaf.webconsole.gogo</artifactId>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000032 <packaging>bundle</packaging>
Guillaume Nodet916f28a2009-09-22 09:11:12 +000033 <version>1.0.0</version>
Guillaume Nodet974bf0d2009-08-07 09:48:21 +000034 <name>Apache Felix Karaf :: Web Console :: Gogo Plugin</name>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000035
Guillaume Nodetc0d97722009-09-18 20:25:06 +000036 <properties>
37 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Gert Vanthienen1ba9a052009-08-06 21:36:13 +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>
62 <groupId>commons-logging</groupId>
63 <artifactId>commons-logging</artifactId>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
Guillaume Nodet91a52c02009-09-18 20:14:54 +000067 <groupId>org.apache.felix.karaf.shell</groupId>
68 <artifactId>org.apache.felix.karaf.shell.console</artifactId>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000069 </dependency>
70 <dependency>
71 <groupId>org.apache.servicemix.bundles</groupId>
72 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.json</groupId>
77 <artifactId>json</artifactId>
78 <version>20070829</version>
79 <scope>compile</scope>
80 <optional>true</optional>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 <configuration>
90 <instructions>
Guillaume Nodet5b4d76d2009-08-10 16:38:17 +000091 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Guillaume Nodetc0d97722009-09-18 20:25:06 +000092 <Import-Package>!${pom.artifactId}*,*</Import-Package>
93 <Export-Package>${pom.artifactId}*;version=${pom.version}</Export-Package>
Gert Vanthienen1ba9a052009-08-06 21:36:13 +000094 <Embed-Dependency>
95 <!-- Required for JSON data transfer -->
96 <!-- TODO: this needs to be put in a common place for reuse. -->
97 json
98 </Embed-Dependency>
99 </instructions>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
104
105</project>