blob: cd4313879ebe7b524c15a7d778cf3cd8030e4607 [file] [log] [blame]
Felix Meschbergerca29a962008-05-16 11:59:32 +00001<?xml version="1.0" encoding="ISO-8859-1"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
Felix Meschbergere60e0722008-05-16 13:09:35 +000020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Felix Meschbergerca29a962008-05-16 11:59:32 +000023
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Felix Meschbergere60e0722008-05-16 13:09:35 +000026 <groupId>org.apache.felix</groupId>
27 <artifactId>felix</artifactId>
28 <version>1.0.2</version>
29 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergerca29a962008-05-16 11:59:32 +000030 </parent>
31
Felix Meschbergere60e0722008-05-16 13:09:35 +000032 <artifactId>org.apache.felix.webconsole</artifactId>
Felix Meschbergerca29a962008-05-16 11:59:32 +000033 <packaging>bundle</packaging>
Felix Meschbergere60e0722008-05-16 13:09:35 +000034 <version>1.0.0-SNAPSHOT</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +000035
Felix Meschbergere60e0722008-05-16 13:09:35 +000036 <name>Apache Felix Web Management Console</name>
37 <description>
38 Web Based Management Console for OSGi Frameworks
39 </description>
Felix Meschbergerca29a962008-05-16 11:59:32 +000040
41 <scm>
42 <connection>
Felix Meschbergere60e0722008-05-16 13:09:35 +000043 scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole
Felix Meschbergerca29a962008-05-16 11:59:32 +000044 </connection>
45 <developerConnection>
Felix Meschbergere60e0722008-05-16 13:09:35 +000046 scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole
Felix Meschbergerca29a962008-05-16 11:59:32 +000047 </developerConnection>
Felix Meschbergere60e0722008-05-16 13:09:35 +000048 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole</url>
Felix Meschbergerca29a962008-05-16 11:59:32 +000049 </scm>
50
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-scr-plugin</artifactId>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
Carsten Ziegeler5e32e602008-05-16 14:44:08 +000063 <Bundle-SymbolicName>
64 ${artifactId}
65 </Bundle-SymbolicName>
66 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergerca29a962008-05-16 11:59:32 +000067 <Bundle-Activator>
Felix Meschbergerab3c75c2008-05-16 13:14:45 +000068 org.apache.felix.webconsole.internal.OsgiManagerActivator
Felix Meschbergerca29a962008-05-16 11:59:32 +000069 </Bundle-Activator>
70 <Export-Package>
Felix Meschbergerab3c75c2008-05-16 13:14:45 +000071 org.apache.felix.webconsole,
Felix Meschbergerca29a962008-05-16 11:59:32 +000072 </Export-Package>
73 <Private-Package>
Felix Meschbergerab3c75c2008-05-16 13:14:45 +000074 !org.apache.felix.webconsole,
75 org.apache.felix.webconsole.*,
Felix Meschbergerca29a962008-05-16 11:59:32 +000076
77 <!-- File Upload functionality -->
78 org.apache.commons.fileupload,
79 org.apache.commons.fileupload.disk,
80 org.apache.commons.fileupload.servlet,
81
82 <!-- Required by FileUpload and Util -->
83 org.apache.commons.io,
84 org.apache.commons.io.filefilter,
85 org.apache.commons.io.output,
86
87 <!-- Required for JSON data transfer -->
Felix Meschbergere60e0722008-05-16 13:09:35 +000088 org.json,
Felix Meschbergerca29a962008-05-16 11:59:32 +000089
90 <!-- Import/Export-Package parsing -->
91 org.apache.felix.bundlerepository
92 </Private-Package>
93 <Import-Package>
Felix Meschbergere60e0722008-05-16 13:09:35 +000094 org.apache.felix.*;
Felix Meschbergerca29a962008-05-16 11:59:32 +000095 org.osgi.service.obr;resolution:=optional,*
96 </Import-Package>
97 </instructions>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102
103 <dependencies>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000107 <version>2.4</version>
108 <scope>provided</scope>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000109 </dependency>
110
111 <!-- This adds commons-io transitively -->
112 <dependency>
113 <groupId>commons-fileupload</groupId>
114 <artifactId>commons-fileupload</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000115 <version>1.1.1</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000116 <scope>compile</scope>
117 </dependency>
118
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.osgi.core</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000122 <version>1.0.1</version>
123 <scope>provided</scope>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000124 </dependency>
125 <dependency>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>org.osgi.compendium</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000128 <version>1.0.1</version>
129 <scope>provided</scope>
130 <exclusions>
131 <exclusion>
132 <groupId>org.apache.felix</groupId>
133 <artifactId>javax.servlet</artifactId>
134 </exclusion>
135 </exclusions>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000136 </dependency>
137
138 <dependency>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000139 <groupId>org.json</groupId>
140 <artifactId>json</artifactId>
141 <version>20070829</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000142 <scope>compile</scope>
143 </dependency>
144
145 <dependency>
146 <groupId>org.apache.felix</groupId>
147 <artifactId>org.apache.felix.scr</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000148 <version>1.0.0</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000149 <scope>provided</scope>
150 </dependency>
151
152 <dependency>
153 <groupId>org.apache.felix</groupId>
154 <artifactId>org.apache.felix.bundlerepository</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000155 <version>1.0.3</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000156 <scope>compile</scope>
157 </dependency>
158
159 </dependencies>
160</project>