Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 1 | <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 Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 13 | <version>0.1.0-SNAPSHOT</version>
|
Stefano Lenzi | 497d0ac | 2006-04-07 09:16:10 +0000 | [diff] [blame] | 14 | <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 Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 21 | </repositories> <!-- <url>http://maven.apache.org</url> -->
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 22 | <dependencies>
|
| 23 | <dependency>
|
Richard S. Hall | a9ba616 | 2006-04-24 14:52:09 +0000 | [diff] [blame] | 24 | <groupId>${pom.groupId}</groupId>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 25 | <artifactId>org.osgi.core</artifactId>
|
Richard S. Hall | a9ba616 | 2006-04-24 14:52:09 +0000 | [diff] [blame] | 26 | <version>0.8.0-SNAPSHOT</version>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 27 | <scope>provided</scope>
|
| 28 | </dependency>
|
| 29 | <dependency>
|
Richard S. Hall | a9ba616 | 2006-04-24 14:52:09 +0000 | [diff] [blame] | 30 | <groupId>${pom.groupId}</groupId>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 31 | <artifactId>org.osgi.compendium</artifactId>
|
Richard S. Hall | a9ba616 | 2006-04-24 14:52:09 +0000 | [diff] [blame] | 32 | <version>0.8.0-SNAPSHOT</version>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 33 | <scope>provided</scope>
|
| 34 | </dependency>
|
| 35 | <dependency>
|
| 36 | <groupId>org.apache.felix</groupId>
|
| 37 | <artifactId>org.apache.felix.upnp.extra</artifactId>
|
Francesco Furfari | 9a10700 | 2006-04-06 09:03:39 +0000 | [diff] [blame] | 38 | <version>0.1.0-SNAPSHOT</version>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 39 | <scope>provided</scope>
|
| 40 | </dependency>
|
| 41 | <dependency>
|
Stefano Lenzi | 497d0ac | 2006-04-07 09:16:10 +0000 | [diff] [blame] | 42 | <groupId>org-cybergarage</groupId>
|
| 43 | <artifactId>cyberlink-upnp-patched</artifactId>
|
| 44 | <version>1.7.0</version>
|
Francesco Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 45 | <scope>provided</scope>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 46 | </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 Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 67 | 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 Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 68 | </importPackage>
|
| 69 | </osgiManifest>
|
Francesco Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 70 | <manifestFile>src/main/resources/release/META-INF/Manifest.mf</manifestFile>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 71 | </configuration>
|
| 72 | </plugin>
|
| 73 | </plugins>
|
| 74 | <resources>
|
| 75 | <resource>
|
Francesco Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 76 | <directory>src/main/resources/release</directory>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 77 | </resource>
|
| 78 | </resources>
|
| 79 | </build>
|
| 80 | </project>
|