blob: c57a5c77af45ba18a51e53877ffe4578635c2d34 [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>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000024 <version>1.0.2</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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000038 <version>0.9.0-SNAPSHOT</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>
Carsten Ziegeler78bcc772008-01-22 07:41:16 +000047 <version>1.2.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>
52 <Bundle-Vendor>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>