blob: ac9f7dbfb92327a47b638b1bbb5a51928a9c90ac [file] [log] [blame]
Karl Pauls589e2b32007-07-11 18:29:29 +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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../pom/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
11 <groupId>org.apache.felix</groupId>
12 <name>Apache Felix UPnP Extra </name>
13 <artifactId>org.apache.felix.upnp.extra</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000015 <!-- <url>http://maven.apache.org</url> -->
16 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>0.9.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000021 <scope>provided</scope>
22 </dependency>
23 </dependencies>
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.felix.plugins</groupId>
28 <artifactId>maven-osgi-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000029 <version>0.9.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000030 <extensions>true</extensions>
31 <configuration>
32 <osgiManifest>
33 <bundleName>UPnPExtra</bundleName>
34 <bundleVendor>Apache Software Foundation</bundleVendor>
35 <bundleVersion>0.1.0</bundleVersion>
36 <bundleDescription>
37 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
38 </bundleDescription>
39 <bundleSymbolicName>org.apache.felix.upnp.extra</bundleSymbolicName>
40 <exportPackage>
41 org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
42 </exportPackage>
43 </osgiManifest>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>