blob: 31a8734ad85c2305f9618a0b1c5b996d8fd1630a [file] [log] [blame]
Francesco Furfari605e6e32006-04-04 22:53:50 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <groupId>org.apache.felix</groupId>
11 <name>Apache Felix UPnP Extra </name>
12 <artifactId>org.apache.felix.upnp.extra</artifactId>
13 <version>0.1.0-SNAPSHOT</version>
14 <!-- <url>http://maven.apache.org</url> -->
15 <dependencies>
16 <dependency>
17 <groupId>org.osgi</groupId>
18 <artifactId>org.osgi.compendium</artifactId>
19 <version>4.0</version>
20 <scope>provided</scope>
21 </dependency>
22 </dependencies>
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.felix.plugins</groupId>
27 <artifactId>maven-osgi-plugin</artifactId>
28 <!-- <version>${pom.version}</version> -->
29 <extensions>true</extensions>
30 <configuration>
31 <osgiManifest>
32 <bundleName>UPnPExtra</bundleName>
33 <bundleVendor>Apache Software Foundation</bundleVendor>
34 <bundleVersion>0.1.0</bundleVersion>
35 <bundleDescription>
36 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
37 </bundleDescription>
38 <bundleSymbolicName>org.apache.felix.upnp.extra</bundleSymbolicName>
39 <importPackage>
40 org.osgi.service.upnp;specification-version=1.1,org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
41 </importPackage>
42 <exportPackage>
43 org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
44 </exportPackage>
45 </osgiManifest>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50</project>