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>
|
Francesco Furfari | 90fc3c2 | 2006-07-25 11:49:38 +0000 | [diff] [blame] | 44 | <version>1.7.1</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>
|
Stefano Lenzi | 2f43ff8 | 2006-06-23 16:48:26 +0000 | [diff] [blame] | 59 | <bundleVersion>0.1.0</bundleVersion>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 60 | <bundleDescription>
|
Francesco Furfari | b46aa6f | 2006-07-26 09:57:23 +0000 | [diff] [blame] | 61 | A Bundle implementation of the UPnP Service Specification R4
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 62 | </bundleDescription>
|
| 63 | <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
|
Francesco Furfari | b46aa6f | 2006-07-26 09:57:23 +0000 | [diff] [blame] | 64 | <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 65 | </osgiManifest>
|
Francesco Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 66 | <manifestFile>src/main/resources/release/META-INF/Manifest.mf</manifestFile>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 67 | </configuration>
|
| 68 | </plugin>
|
| 69 | </plugins>
|
| 70 | <resources>
|
| 71 | <resource>
|
Francesco Furfari | e70248f | 2006-04-07 13:11:47 +0000 | [diff] [blame] | 72 | <directory>src/main/resources/release</directory>
|
Francesco Furfari | d8bdb64 | 2006-04-04 23:33:40 +0000 | [diff] [blame] | 73 | </resource>
|
| 74 | </resources>
|
| 75 | </build>
|
| 76 | </project>
|