Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
Stefano Lenzi | 3897e47 | 2009-05-17 16:04:39 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
Stefano Lenzi | 3897e47 | 2009-05-17 16:04:39 +0000 | [diff] [blame] | 24 | <version>1.2.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 25 | <relativePath>../../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <artifactId>org.apache.felix.upnp.sample.tv</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | <name>Apache Felix UPnP Sample TV</name> |
| 32 | <version>0.2.0-SNAPSHOT</version> |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-bundle-plugin</artifactId> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 38 | <extensions>true</extensions> |
| 39 | <configuration> |
| 40 | <instructions> |
| 41 | <Bundle-Name>${pom.name}</Bundle-Name> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 42 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 43 | <Bundle-Author>Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org></Bundle-Author> |
| 44 | <Bundle-Description>CyberLink Tv clone to test UPnPBase driver</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> |
| 50 | </configuration> |
| 51 | </plugin> |
Stefano Lenzi | 3872d74 | 2009-05-22 16:01:40 +0000 | [diff] [blame] | 52 | <plugin> |
| 53 | <groupId>org.ops4j</groupId> |
| 54 | <artifactId>maven-pax-plugin</artifactId> |
| 55 | <configuration> |
| 56 | <provision> |
| 57 | <provision>mvn:org.apache.felix/org.apache.felix.upnp.basedriver@nostart</provision> |
| 58 | <provision>mvn:org.apache.felix/org.apache.felix.upnp.tester</provision> |
| 59 | <provision>mvn:org.apache.felix/org.apache.felix.upnp.extra</provision> |
| 60 | <provision>mvn:org.apache.felix/javax.servlet</provision> |
| 61 | <provision>mvn:org.apache.felix/org.apache.felix.http.jetty@nostart</provision> |
| 62 | </provision> |
| 63 | </configuration> |
| 64 | </plugin> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 65 | </plugins> |
| 66 | </build> |
Stefano Lenzi | 3872d74 | 2009-05-22 16:01:40 +0000 | [diff] [blame] | 67 | |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 68 | <dependencies> |
| 69 | <dependency> |
| 70 | <groupId>${pom.groupId}</groupId> |
| 71 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | f5a813c | 2008-11-19 18:55:40 +0000 | [diff] [blame] | 72 | <version>1.0.1</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 73 | <scope>provided</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>${pom.groupId}</groupId> |
| 77 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 78 | <version>1.0.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 79 | <scope>provided</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.apache.felix</groupId> |
| 83 | <artifactId>org.apache.felix.upnp.extra</artifactId> |
Stefano Lenzi | 3872d74 | 2009-05-22 16:01:40 +0000 | [diff] [blame] | 84 | <version>0.4.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 85 | <scope>provided</scope> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </project> |
| 89 | |