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 Sample TV</name> |
| 13 | <artifactId>org.apache.felix.upnp.sample.tv</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 | <!-- <url>http://maven.apache.org</url> --> |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>${pom.groupId}</groupId> |
| 19 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 20 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 21 | <scope>provided</scope> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>${pom.groupId}</groupId> |
| 25 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 26 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | </dependencies> |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.felix.plugins</groupId> |
| 34 | <artifactId>maven-osgi-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 35 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 36 | <extensions>true</extensions> |
| 37 | <configuration> |
| 38 | <osgiManifest> |
| 39 | <bundleName>UPnPTV</bundleName> |
| 40 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 41 | <bundleVersion>0.1.0</bundleVersion> |
| 42 | <bundleDescription> |
| 43 | CyberLink Tv clone to test UPnPBase driver |
| 44 | </bundleDescription> |
| 45 | <bundleSymbolicName>org.apache.felix.upnp.sample.tv</bundleSymbolicName> |
| 46 | <bundleActivator>org.apache.felix.upnp.sample.tv.Activator</bundleActivator> |
| 47 | </osgiManifest> |
| 48 | <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | <resources> |
| 53 | <resource> |
| 54 | <directory>src/main/resources</directory> |
| 55 | </resource> |
| 56 | </resources> |
| 57 | </build> |
| 58 | </project> |