Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 | --> |
Stefano Lenzi | d8dc867 | 2009-05-14 08:14:47 +0000 | [diff] [blame] | 19 | <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"> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Stefano Lenzi | 3897e47 | 2009-05-17 16:04:39 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 28 | <groupId>org.apache.felix</groupId> |
| 29 | <name>Apache Felix UPnP Extra </name> |
| 30 | <artifactId>org.apache.felix.upnp.extra</artifactId> |
Stefano Lenzi | c260343 | 2009-05-17 16:13:06 +0000 | [diff] [blame] | 31 | <version>0.5.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 32 | <!-- <url>http://maven.apache.org</url> --> |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>${pom.groupId}</groupId> |
| 36 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 37 | <version>1.0.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | </dependencies> |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 46 | <extensions>true</extensions> |
| 47 | <configuration> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 48 | <instructions> |
| 49 | <Bundle-Name>${pom.name}</Bundle-Name> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 50 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 51 | <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author> |
| 52 | <Bundle-Description> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 53 | 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 Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 54 | </Bundle-Description> |
| 55 | <Bundle-SymbolicName>org.apache.felix.upnp.extra</Bundle-SymbolicName> |
| 56 | <Export-Package>org.apache.felix.upnp.extra.*</Export-Package> |
| 57 | <Private-Package>org.apache.xerces.impl.dv.util</Private-Package> |
| 58 | </instructions> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | </project> |