blob: 604327a76ab3e8ed2740c3fae60f1be2a6e9912a [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +00001<!--
2 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
10 http://www.apache.org/licenses/LICENSE-2.0
11
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.
18-->
Karl Pauls589e2b32007-07-11 18:29:29 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000024 <version>1.0.4</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +000025 <relativePath>../../pom/pom.xml</relativePath>
Karl Pauls589e2b32007-07-11 18:29:29 +000026 </parent>
27 <modelVersion>4.0.0</modelVersion>
Stefano Lenzic72e5842007-08-23 22:05:21 +000028 <packaging>bundle</packaging>
Karl Pauls589e2b32007-07-11 18:29:29 +000029 <groupId>org.apache.felix</groupId>
30 <name>Apache Felix UPnP Extra </name>
31 <artifactId>org.apache.felix.upnp.extra</artifactId>
Stefano Lenzi8ace4a32007-12-20 20:39:17 +000032 <version>0.3.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000033 <!-- <url>http://maven.apache.org</url> -->
34 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000038 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000039 <scope>provided</scope>
40 </dependency>
41 </dependencies>
42 <build>
43 <plugins>
44 <plugin>
Stefano Lenzic72e5842007-08-23 22:05:21 +000045 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000047 <version>1.4.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000048 <extensions>true</extensions>
49 <configuration>
Stefano Lenzic72e5842007-08-23 22:05:21 +000050 <instructions>
51 <Bundle-Name>${pom.name}</Bundle-Name>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000052 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Stefano Lenzic72e5842007-08-23 22:05:21 +000053 <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author>
54 <Bundle-Description>
Karl Pauls589e2b32007-07-11 18:29:29 +000055 A library used to extend the integration between UPnP and OSGi that is not part of the standard. Also services that allow to change the beahviour of the UPnP Base Driver
Stefano Lenzic72e5842007-08-23 22:05:21 +000056 </Bundle-Description>
57 <Bundle-SymbolicName>org.apache.felix.upnp.extra</Bundle-SymbolicName>
58 <Export-Package>org.apache.felix.upnp.extra.*</Export-Package>
59 <Private-Package>org.apache.xerces.impl.dv.util</Private-Package>
60 </instructions>
Karl Pauls589e2b32007-07-11 18:29:29 +000061 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65</project>