blob: 0cc297684a0a123671602b95e43eeb7924124c4e [file] [log] [blame]
Felix Meschberger57efc292008-05-20 18:28:18 +00001<!--
Felix Meschberger9b3c4e02008-06-02 13:52:15 +00002 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
Felix Meschberger57efc292008-05-20 18:28:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Felix Meschberger9b3c4e02008-06-02 13:52:15 +000011
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
Felix Meschberger57efc292008-05-20 18:28:18 +000018-->
Felix Meschberger7dfbb4a2008-05-20 18:19:33 +000019<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">
Felix Meschbergerca29a962008-05-16 11:59:32 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Felix Meschbergere60e0722008-05-16 13:09:35 +000023 <groupId>org.apache.felix</groupId>
Felix Meschbergere48e5db2009-05-11 14:25:53 +000024 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
Felix Meschbergere60e0722008-05-16 13:09:35 +000026 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergerca29a962008-05-16 11:59:32 +000027 </parent>
28
Felix Meschbergere60e0722008-05-16 13:09:35 +000029 <artifactId>org.apache.felix.webconsole</artifactId>
Felix Meschbergerca29a962008-05-16 11:59:32 +000030 <packaging>bundle</packaging>
Guillaume Nodet6af55c62010-06-15 11:03:20 +000031 <version>3.1.1-SNAPSHOT</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +000032
Felix Meschbergere60e0722008-05-16 13:09:35 +000033 <name>Apache Felix Web Management Console</name>
34 <description>
Felix Meschberger8ee5c432008-08-27 06:46:31 +000035 Web Based Management Console for OSGi Frameworks. See
Felix Meschberger61ac6072009-10-01 14:27:10 +000036 http://felix.apache.org/site/apache-felix-web-console.html for more
Felix Meschberger8ee5c432008-08-27 06:46:31 +000037 information on this bundle.
Felix Meschbergere60e0722008-05-16 13:09:35 +000038 </description>
Felix Meschbergerca29a962008-05-16 11:59:32 +000039
40 <scm>
Guillaume Nodet6af55c62010-06-15 11:03:20 +000041 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole</connection>
42 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole</developerConnection>
43 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole</url>
Felix Meschbergerca29a962008-05-16 11:59:32 +000044 </scm>
45
46 <build>
Felix Meschbergerf85d5af2010-03-26 11:38:34 +000047 <resources>
48 <!-- default resources (may be removed when compat is removed) -->
49 <resource>
50 <directory>${basedir}/src/main/resources</directory>
51 </resource>
52 <resource>
53 <targetPath>META-INF</targetPath>
54 <directory>${basedir}</directory>
55 <includes>
56 <include>LICENSE*</include>
57 <include>NOTICE*</include>
58 </includes>
59 </resource>
60 <!-- CSS and images for backwards compatibility -->
61 <resource>
62 <directory>${basedir}/src/main/compat</directory>
63 </resource>
64 </resources>
Felix Meschbergerca29a962008-05-16 11:59:32 +000065 <plugins>
Felix Meschberger17f7f792010-02-22 14:12:43 +000066 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
67 <plugin>
68 <groupId>org.codehaus.mojo</groupId>
69 <artifactId>native2ascii-maven-plugin</artifactId>
70 <version>1.0-alpha-1</version>
71 <executions>
72 <execution>
73 <goals>
74 <goal>native2ascii</goal>
75 </goals>
76 <configuration>
77 <encoding>UTF-8</encoding>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82
Felix Meschbergerca29a962008-05-16 11:59:32 +000083 <plugin>
84 <groupId>org.apache.felix</groupId>
Felix Meschbergerca29a962008-05-16 11:59:32 +000085 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegelerd0a6f362008-08-20 12:54:13 +000086 <version>1.4.3</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +000087 <extensions>true</extensions>
88 <configuration>
89 <instructions>
Carsten Ziegeler5e32e602008-05-16 14:44:08 +000090 <Bundle-SymbolicName>
91 ${artifactId}
92 </Bundle-SymbolicName>
Felix Meschberger9b3c4e02008-06-02 13:52:15 +000093 <Bundle-Vendor>
94 The Apache Software Foundation
95 </Bundle-Vendor>
96 <Bundle-DocURL>
Felix Meschbergera26ffb42008-12-22 11:39:17 +000097 http://felix.apache.org/site/apache-felix-web-console.html
Felix Meschberger9b3c4e02008-06-02 13:52:15 +000098 </Bundle-DocURL>
Felix Meschbergerca29a962008-05-16 11:59:32 +000099 <Bundle-Activator>
Felix Meschbergerab3c75c2008-05-16 13:14:45 +0000100 org.apache.felix.webconsole.internal.OsgiManagerActivator
Felix Meschbergerca29a962008-05-16 11:59:32 +0000101 </Bundle-Activator>
102 <Export-Package>
Guillaume Nodetb52d5e32010-06-15 10:59:41 +0000103 org.apache.felix.webconsole;version=${project.version}
Felix Meschbergerca29a962008-05-16 11:59:32 +0000104 </Export-Package>
105 <Private-Package>
Felix Meschbergerab3c75c2008-05-16 13:14:45 +0000106 !org.apache.felix.webconsole,
107 org.apache.felix.webconsole.*,
Felix Meschbergerca29a962008-05-16 11:59:32 +0000108 </Private-Package>
109 <Import-Package>
Felix Meschberger6f21ed42009-06-09 10:09:40 +0000110 org.osgi.service.http,
Felix Meschberger9b3c4e02008-06-02 13:52:15 +0000111 org.apache.felix.scr;
112 org.apache.felix.shell;
Carsten Ziegeleraa079482009-02-06 14:53:56 +0000113 org.osgi.service.*;resolution:=optional,
Felix Meschberger790de592009-05-15 11:43:45 +0000114 javax.portlet;resolution:=optional,
Felix Meschberger6dcc01e2010-01-17 17:40:57 +0000115 javax.servlet.*;version=2.4,
116 *
Felix Meschbergerca29a962008-05-16 11:59:32 +0000117 </Import-Package>
Felix Meschberger35ddac22010-03-22 15:31:13 +0000118 <DynamicImport-Package>
119 org.apache.felix.bundlerepository,
120 org.osgi.service.obr
121 </DynamicImport-Package>
Felix Meschberger9b3c4e02008-06-02 13:52:15 +0000122 <Embed-Dependency>
Felix Meschberger18330ac2009-06-29 10:21:00 +0000123 <!-- Import/Export-Package parsing -->
Felix Meschberger35ddac22010-03-22 15:31:13 +0000124 org.apache.felix.utils;inline=org/apache/felix/utils/manifest/**,
Felix Meschbergerd43b6d92010-04-03 09:55:38 +0000125 org.apache.felix.framework;inline=org/apache/felix/framework/util/VersionRange**,
Felix Meschberger9b3c4e02008-06-02 13:52:15 +0000126
Felix Meschberger3a0aac42009-09-23 05:58:18 +0000127 <!-- ServiceTracker -->
128 org.osgi.compendium;
129 inline=org/osgi/util/tracker/*,
130
Felix Meschberger9b3c4e02008-06-02 13:52:15 +0000131 <!-- Required for JSON data transfer -->
Carsten Ziegeler32196dc2009-02-05 18:35:13 +0000132 json,
133
134 <!-- File Upload functionality -->
135 commons-fileupload,
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000136
Carsten Ziegeler32196dc2009-02-05 18:35:13 +0000137 <!-- Required by FileUpload and Util -->
138 commons-io
Felix Meschberger9b3c4e02008-06-02 13:52:15 +0000139 </Embed-Dependency>
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000140
141 <_donotcopy>NOTICE.bare</_donotcopy>
142 <_removeheaders>
143 Embed-Dependency,Private-Package,Include-Resource
144 </_removeheaders>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000145 </instructions>
146 </configuration>
147 </plugin>
148 </plugins>
149 </build>
150
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000151 <profiles>
152 <!--
153 The "bare-bundle" profile builds a bundle not including certain
154 3rd party libraries and classes, namely: Commons IO, Commons
155 FileUpload, JSON, and the OSGi ServiceTracker. These are imported
156 by this bundle. The classes from the bundlerepository bundle are
157 still included because they are not exported from the
158 bundlerepository bundle and thus cannot be imported.
159 The "bare-bundle" can be used if the non-embedded libraries are
160 provided by the framework in which the web console is installed.
161 -->
162 <profile>
163 <id>bare-bundle</id>
164 <activation><activeByDefault>true</activeByDefault></activation>
165 <build>
166 <plugins>
167 <plugin>
168 <groupId>org.apache.felix</groupId>
169 <artifactId>maven-bundle-plugin</artifactId>
170 <executions>
171 <execution>
172 <id>bare-bundle</id>
173 <goals>
174 <goal>bundle</goal>
175 </goals>
176 <configuration>
177 <classifier>bare</classifier>
178 <instructions>
Felix Meschbergere1833c22010-02-17 11:56:17 +0000179 <Bundle-SymbolicName>
180 ${artifactId}.bare
181 </Bundle-SymbolicName>
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000182 <Include-Resource>
Felix Meschberger13360452010-01-12 08:15:06 +0000183 {maven-resources},META-INF/NOTICE=src/main/bare-resources/NOTICE
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000184 </Include-Resource>
185 <_donotcopy>LICENSE.json</_donotcopy>
186 <!-- <_donotcopy>(LICENSE.json|NOTICE.bare)</_donotcopy> -->
187 <Embed-Dependency>
Felix Meschbergerd43b6d92010-04-03 09:55:38 +0000188 org.apache.felix.utils;inline=org/apache/felix/utils/manifest/**,
189 org.apache.felix.framework;inline=org/apache/felix/framework/util/VersionRange**
Felix Meschbergerc17f2d12010-01-12 08:09:52 +0000190 </Embed-Dependency>
191 </instructions>
192 </configuration>
193 </execution>
194 </executions>
195 </plugin>
196 </plugins>
197 </build>
198 </profile>
199 </profiles>
200
Felix Meschbergerca29a962008-05-16 11:59:32 +0000201 <dependencies>
202 <dependency>
203 <groupId>javax.servlet</groupId>
204 <artifactId>servlet-api</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000205 <version>2.4</version>
206 <scope>provided</scope>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000207 </dependency>
208
Felix Meschbergerca29a962008-05-16 11:59:32 +0000209 <dependency>
210 <groupId>commons-fileupload</groupId>
211 <artifactId>commons-fileupload</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000212 <version>1.1.1</version>
Carsten Ziegeler32196dc2009-02-05 18:35:13 +0000213 <scope>provided</scope>
214 <optional>true</optional>
215 </dependency>
216
217 <dependency>
218 <groupId>commons-io</groupId>
219 <artifactId>commons-io</artifactId>
220 <version>1.4</version>
221 <scope>provided</scope>
Felix Meschberger6c39c6c2008-05-21 21:25:49 +0000222 <optional>true</optional>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000223 </dependency>
224
225 <dependency>
Carsten Ziegeler975b2e22009-12-15 15:57:11 +0000226 <groupId>org.osgi</groupId>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000227 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler975b2e22009-12-15 15:57:11 +0000228 <version>4.1.0</version>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000229 <scope>provided</scope>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000230 </dependency>
231 <dependency>
Carsten Ziegeler975b2e22009-12-15 15:57:11 +0000232 <groupId>org.osgi</groupId>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000233 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler975b2e22009-12-15 15:57:11 +0000234 <version>4.1.0</version>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000235 <scope>provided</scope>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000236 </dependency>
237
238 <dependency>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000239 <groupId>org.json</groupId>
240 <artifactId>json</artifactId>
241 <version>20070829</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000242 <scope>compile</scope>
Felix Meschberger6c39c6c2008-05-21 21:25:49 +0000243 <optional>true</optional>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000244 </dependency>
245
246 <dependency>
247 <groupId>org.apache.felix</groupId>
248 <artifactId>org.apache.felix.scr</artifactId>
Felix Meschbergere60e0722008-05-16 13:09:35 +0000249 <version>1.0.0</version>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000250 <scope>provided</scope>
251 </dependency>
252
Felix Meschbergerd43b6d92010-04-03 09:55:38 +0000253 <!--
254 Required for a simple VersionRange class, the class from
255 the utils bundle is overkill and requires JDK 1.4 or better
256 -->
257 <dependency>
258 <groupId>org.apache.felix</groupId>
259 <artifactId>org.apache.felix.framework</artifactId>
260 <version>2.0.2</version>
261 <scope>provided</scope>
262 <optional>true</optional>
263 </dependency>
264
Felix Meschberger18330ac2009-06-29 10:21:00 +0000265 <!-- Parsing Import/Export-Package headers -->
Felix Meschbergerca29a962008-05-16 11:59:32 +0000266 <dependency>
267 <groupId>org.apache.felix</groupId>
Felix Meschberger35ddac22010-03-22 15:31:13 +0000268 <artifactId>org.apache.felix.utils</artifactId>
Felix Meschbergerd43b6d92010-04-03 09:55:38 +0000269 <version>1.0.0</version>
Felix Meschberger35ddac22010-03-22 15:31:13 +0000270 <scope>provided</scope>
Felix Meschberger6c39c6c2008-05-21 21:25:49 +0000271 <optional>true</optional>
Felix Meschbergerca29a962008-05-16 11:59:32 +0000272 </dependency>
Felix Meschberger35ddac22010-03-22 15:31:13 +0000273
274 <!-- OSGi and Apache Felix OBR API -->
275 <dependency>
276 <groupId>org.apache.felix</groupId>
277 <artifactId>org.osgi.service.obr</artifactId>
278 <version>1.0.2</version>
279 <scope>provided</scope>
280 </dependency>
281 <dependency>
282 <groupId>org.apache.felix</groupId>
283 <artifactId>org.apache.felix.bundlerepository</artifactId>
Felix Meschbergerd43b6d92010-04-03 09:55:38 +0000284 <version>1.6.0</version>
Felix Meschberger35ddac22010-03-22 15:31:13 +0000285 <scope>provided</scope>
286 <optional>true</optional>
287 </dependency>
288
Felix Meschbergerca29a962008-05-16 11:59:32 +0000289 </dependencies>
Felix Meschberger51a72802008-08-27 19:52:34 +0000290</project>