blob: 9fcad51f55ae50fa8a55dac1e9473efe20d54508 [file] [log] [blame]
Francesco Furfarid8bdb642006-04-04 23:33:40 +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 Base Driver</name>
12 <artifactId>org.apache.felix.upnp.basedriver</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.core</artifactId>
19 <version>4.0</version>
20 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>org.osgi</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
25 <version>4.0</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.upnp.extra</artifactId>
31 <version>1.0-SNAPSHOT</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.cybergarage</groupId>
36 <artifactId>cyberlink-patched-release</artifactId>
37 <version>1.7</version>
38 <scope>provided</scope>
39 </dependency>
40 </dependencies>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix.plugins</groupId>
45 <artifactId>maven-osgi-plugin</artifactId>
46 <!-- <version>${pom.version}</version> -->
47 <extensions>true</extensions>
48 <configuration>
49 <osgiManifest>
50 <bundleName>UPnPBaseDriver</bundleName>
51 <bundleVendor>Apache Software Foundation</bundleVendor>
52 <bundleVersion>1.0.0</bundleVersion>
53 <bundleDescription>
54 A Bundle implementation of the UPnP Service Specification R4 (not yet)
55 </bundleDescription>
56 <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
57 <!-- <bundleClassPath>.,lib/cyberlink-1.7-patched-release.jar</bundleClassPath> -->
58 <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
59 <importPackage>
60 org.osgi.framework;specification-version=1.3,org.osgi.service.device;specification-version=1.1,org.osgi.service.upnp;specification-version=1.1,org.osgi.service.log;specification-version=1.3,org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
61 </importPackage>
62 </osgiManifest>
63 <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile>
64 </configuration>
65 </plugin>
66 </plugins>
67 <resources>
68 <resource>
69 <directory>src/main/resources</directory>
70 </resource>
71 </resources>
72 </build>
73</project>