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>
|
Stefano Lenzi | 497d0ac | 2006-04-07 09:16:10 +0000 | [diff] [blame] | 13 | <version>0.1.0-SNAPSHOT</version> |
| 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>
|
| 21 | </repositories>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 22 | <!-- <url>http://maven.apache.org</url> -->
|
| 23 | <dependencies>
|
| 24 | <dependency>
|
| 25 | <groupId>org.osgi</groupId>
|
| 26 | <artifactId>org.osgi.core</artifactId>
|
| 27 | <version>4.0</version>
|
| 28 | <scope>provided</scope>
|
| 29 | </dependency>
|
| 30 | <dependency>
|
| 31 | <groupId>org.osgi</groupId>
|
| 32 | <artifactId>org.osgi.compendium</artifactId>
|
| 33 | <version>4.0</version>
|
| 34 | <scope>provided</scope>
|
| 35 | </dependency>
|
| 36 | <dependency>
|
| 37 | <groupId>org.apache.felix</groupId>
|
| 38 | <artifactId>org.apache.felix.upnp.extra</artifactId>
|
Francesco Furfari | 9a10700 | 2006-04-06 09:03:39 +0000 | [diff] [blame] | 39 | <version>0.1.0-SNAPSHOT</version>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 40 | <scope>provided</scope>
|
| 41 | </dependency>
|
| 42 | <dependency>
|
Stefano Lenzi | 497d0ac | 2006-04-07 09:16:10 +0000 | [diff] [blame] | 43 | <groupId>org-cybergarage</groupId>
|
| 44 | <artifactId>cyberlink-upnp-patched</artifactId>
|
| 45 | <version>1.7.0</version>
|
| 46 | <scope>provided</scope> |
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 47 | </dependency>
|
| 48 | </dependencies>
|
| 49 | <build>
|
| 50 | <plugins>
|
| 51 | <plugin>
|
| 52 | <groupId>org.apache.felix.plugins</groupId>
|
| 53 | <artifactId>maven-osgi-plugin</artifactId>
|
| 54 | <!-- <version>${pom.version}</version> -->
|
| 55 | <extensions>true</extensions>
|
| 56 | <configuration>
|
| 57 | <osgiManifest>
|
| 58 | <bundleName>UPnPBaseDriver</bundleName>
|
| 59 | <bundleVendor>Apache Software Foundation</bundleVendor>
|
| 60 | <bundleVersion>1.0.0</bundleVersion>
|
| 61 | <bundleDescription>
|
| 62 | A Bundle implementation of the UPnP Service Specification R4 (not yet)
|
| 63 | </bundleDescription>
|
| 64 | <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
|
| 65 | <!-- <bundleClassPath>.,lib/cyberlink-1.7-patched-release.jar</bundleClassPath> -->
|
| 66 | <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
|
| 67 | <importPackage>
|
| 68 | 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
|
| 69 | </importPackage>
|
| 70 | </osgiManifest>
|
| 71 | <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile>
|
| 72 | </configuration>
|
| 73 | </plugin>
|
| 74 | </plugins>
|
| 75 | <resources>
|
| 76 | <resource>
|
| 77 | <directory>src/main/resources</directory>
|
| 78 | </resource>
|
| 79 | </resources>
|
| 80 | </build>
|
| 81 | </project>
|