blob: da7e5610b3d782756c9107054d3721803d44ff36 [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>
Richard S. Hallf2be1962006-12-22 19:46:42 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Francesco Furfari605e6e32006-04-04 22:53:50 +00007 </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>
Richard S. Hallf2be1962006-12-22 19:46:42 +000013 <version>0.1.0-incubator-SNAPSHOT</version>
Francesco Furfari605e6e32006-04-04 22:53:50 +000014 <!-- <url>http://maven.apache.org</url> -->
15 <dependencies>
16 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000017 <groupId>${pom.groupId}</groupId>
Francesco Furfari605e6e32006-04-04 22:53:50 +000018 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000019 <version>0.9.0-incubator-SNAPSHOT</version>
Francesco Furfari605e6e32006-04-04 22:53:50 +000020 <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>
Francesco Furfari605e6e32006-04-04 22:53:50 +000039 <exportPackage>
40 org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
41 </exportPackage>
42 </osgiManifest>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47</project>