Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 6 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 7 | <relativePath>../pom/pom.xml</relativePath> |
| 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <packaging>osgi-bundle</packaging> |
| 11 | <groupId>org.apache.felix</groupId> |
| 12 | <name>Apache Felix UPnP Base Driver</name> |
| 13 | <artifactId>org.apache.felix.upnp.basedriver</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 14 | <version>0.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 15 | <repositories> |
| 16 | <!-- For snapshots (no release jars or non-apache jars) --> |
| 17 | <repository> |
| 18 | <id>domoware.isti.cnr.it</id> |
| 19 | <name>DomoWare Repository for Missing Artifacts</name> |
| 20 | <url>http://domoware.isti.cnr.it/maven2</url> |
| 21 | </repository> |
| 22 | </repositories> <!-- <url>http://maven.apache.org</url> --> |
| 23 | <dependencies> |
| 24 | <dependency> |
| 25 | <groupId>${pom.groupId}</groupId> |
| 26 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 27 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>${pom.groupId}</groupId> |
| 32 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.apache.felix</groupId> |
| 38 | <artifactId>org.apache.felix.upnp.extra</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 39 | <version>0.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org-cybergarage</groupId> |
| 44 | <artifactId>cyberlink-upnp-patched</artifactId> |
| 45 | <version>1.7.2</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.felix.plugins</groupId> |
| 53 | <artifactId>maven-osgi-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 54 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 55 | <extensions>true</extensions> |
| 56 | <configuration> |
| 57 | <osgiManifest> |
| 58 | <bundleName>UPnPBaseDriver</bundleName> |
| 59 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 60 | <bundleVersion>0.1.0</bundleVersion> |
| 61 | <bundleDescription> |
| 62 | A Bundle implementation of the UPnP Service Specification R4 |
| 63 | </bundleDescription> |
| 64 | <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName> |
| 65 | <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator> |
| 66 | </osgiManifest> |
| 67 | <manifestFile>src/main/resources/release/META-INF/Manifest.mf</manifestFile> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | <resources> |
| 72 | <resource> |
| 73 | <directory>src/main/resources/release</directory> |
| 74 | </resource> |
| 75 | </resources> |
| 76 | </build> |
| 77 | </project> |