blob: 79c981f65807779cb27db81df3117a227bdd267f [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>
Francesco Furfarie70248f2006-04-07 13:11:47 +000013 <version>0.1.0-SNAPSHOT</version>
Stefano Lenzi497d0ac2006-04-07 09:16:10 +000014 <repositories>
15 <!-- For snapshots (no release jars or non-apache jars) -->
16 <repository>
17 <id>domoware.isti.cnr.it</id>
18 <name>DomoWare Repository for Missing Artifacts</name>
19 <url>http://domoware.isti.cnr.it/maven2</url>
20 </repository>
Francesco Furfarie70248f2006-04-07 13:11:47 +000021 </repositories> <!-- <url>http://maven.apache.org</url> -->
Francesco Furfarid8bdb642006-04-04 23:33:40 +000022 <dependencies>
23 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000024 <groupId>${pom.groupId}</groupId>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000025 <artifactId>org.osgi.core</artifactId>
Richard S. Halla9ba6162006-04-24 14:52:09 +000026 <version>0.8.0-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000030 <groupId>${pom.groupId}</groupId>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000031 <artifactId>org.osgi.compendium</artifactId>
Richard S. Halla9ba6162006-04-24 14:52:09 +000032 <version>0.8.0-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000033 <scope>provided</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.upnp.extra</artifactId>
Francesco Furfari9a107002006-04-06 09:03:39 +000038 <version>0.1.0-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000039 <scope>provided</scope>
40 </dependency>
41 <dependency>
Stefano Lenzi497d0ac2006-04-07 09:16:10 +000042 <groupId>org-cybergarage</groupId>
43 <artifactId>cyberlink-upnp-patched</artifactId>
44 <version>1.7.0</version>
Francesco Furfarie70248f2006-04-07 13:11:47 +000045 <scope>provided</scope>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000046 </dependency>
47 </dependencies>
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix.plugins</groupId>
52 <artifactId>maven-osgi-plugin</artifactId>
53 <!-- <version>${pom.version}</version> -->
54 <extensions>true</extensions>
55 <configuration>
56 <osgiManifest>
57 <bundleName>UPnPBaseDriver</bundleName>
58 <bundleVendor>Apache Software Foundation</bundleVendor>
59 <bundleVersion>1.0.0</bundleVersion>
60 <bundleDescription>
61 A Bundle implementation of the UPnP Service Specification R4 (not yet)
62 </bundleDescription>
63 <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
64 <!-- <bundleClassPath>.,lib/cyberlink-1.7-patched-release.jar</bundleClassPath> -->
65 <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
66 <importPackage>
Francesco Furfarie70248f2006-04-07 13:11:47 +000067 org.w3c.dom,javax.xml.parsers,org.xml.sax,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
Francesco Furfarid8bdb642006-04-04 23:33:40 +000068 </importPackage>
69 </osgiManifest>
Francesco Furfarie70248f2006-04-07 13:11:47 +000070 <manifestFile>src/main/resources/release/META-INF/Manifest.mf</manifestFile>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000071 </configuration>
72 </plugin>
73 </plugins>
74 <resources>
75 <resource>
Francesco Furfarie70248f2006-04-07 13:11:47 +000076 <directory>src/main/resources/release</directory>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000077 </resource>
78 </resources>
79 </build>
80</project>