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> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 10 | <packaging>bundle</packaging> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 11 | <groupId>org.apache.felix</groupId> |
| 12 | <name>Apache Felix UPnP Sample TV</name> |
| 13 | <artifactId>org.apache.felix.upnp.sample.tv</artifactId> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 14 | <version>0.2.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> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>maven-bundle-plugin</artifactId> |
| 35 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 36 | <extensions>true</extensions> |
| 37 | <configuration> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 38 | <instructions> |
| 39 | <Bundle-Name>${pom.name}</Bundle-Name> |
| 40 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 41 | <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author> |
| 42 | <Bundle-Description> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 43 | CyberLink Tv clone to test UPnPBase driver |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 44 | </Bundle-Description> |
| 45 | <Bundle-SymbolicName>org.apache.felix.upnp.sample.tv</Bundle-SymbolicName> |
| 46 | <Bundle-Activator>org.apache.felix.upnp.sample.tv.Activator</Bundle-Activator> |
| 47 | <Private-Package>org.apache.felix.upnp.sample.tv.*</Private-Package> |
| 48 | <Import-Package>*</Import-Package> |
| 49 | </instructions> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 50 | </configuration> |
| 51 | </plugin> |
| 52 | </plugins> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 53 | </build> |
| 54 | </project> |