Francesco Furfari | a2519a1 | 2007-12-31 12:26:14 +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 | --> |
Francesco Furfari | a2519a1 | 2007-12-31 12:26:14 +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>
|
| 22 | <artifactId>felix</artifactId>
|
| 23 | <groupId>org.apache.felix</groupId>
|
Carsten Ziegeler | 646b9f1 | 2008-01-16 07:44:32 +0000 | [diff] [blame] | 24 | <version>1.0.2</version>
|
| 25 | <relativePath>../../../pom/pom.xml</relativePath>
|
Francesco Furfari | a2519a1 | 2007-12-31 12:26:14 +0000 | [diff] [blame] | 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>
|
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame^] | 38 | <version>1.4.0</version> |
Francesco Furfari | a2519a1 | 2007-12-31 12:26:14 +0000 | [diff] [blame] | 39 | <extensions>true</extensions>
|
| 40 | <configuration>
|
| 41 | <instructions>
|
| 42 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 43 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
|
| 44 | <Bundle-Author>Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org></Bundle-Author>
|
| 45 | <Bundle-Description>CyberLink Tv clone to test UPnPBase driver</Bundle-Description>
|
| 46 | <Bundle-SymbolicName>org.apache.felix.upnp.sample.tv</Bundle-SymbolicName>
|
| 47 | <Bundle-Activator>org.apache.felix.upnp.sample.tv.Activator</Bundle-Activator>
|
| 48 | <Private-Package>org.apache.felix.upnp.sample.tv.*</Private-Package>
|
| 49 | <Import-Package>*</Import-Package>
|
| 50 | </instructions>
|
| 51 | </configuration>
|
| 52 | </plugin>
|
| 53 | </plugins>
|
| 54 | </build>
|
| 55 | <dependencies>
|
| 56 | <dependency>
|
| 57 | <groupId>${pom.groupId}</groupId>
|
| 58 | <artifactId>org.osgi.core</artifactId>
|
| 59 | <version>1.1.0-SNAPSHOT</version>
|
| 60 | <scope>provided</scope>
|
| 61 | </dependency>
|
| 62 | <dependency>
|
| 63 | <groupId>${pom.groupId}</groupId>
|
| 64 | <artifactId>org.osgi.compendium</artifactId>
|
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 65 | <version>1.0.0</version> |
Francesco Furfari | a2519a1 | 2007-12-31 12:26:14 +0000 | [diff] [blame] | 66 | <scope>provided</scope>
|
| 67 | </dependency>
|
| 68 | <dependency>
|
| 69 | <groupId>org.apache.felix</groupId>
|
| 70 | <artifactId>org.apache.felix.upnp.extra</artifactId>
|
| 71 | <version>0.3.0-SNAPSHOT</version>
|
| 72 | <scope>provided</scope>
|
| 73 | </dependency>
|
| 74 | </dependencies>
|
| 75 | </project>
|
| 76 |
|