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> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 24 | <version>1.0.4</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 27 | |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>org.apache.felix.upnp.tester</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | <name>Apache Felix UPnP Tester</name> |
| 33 | <version>0.2.0-SNAPSHOT</version> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 34 | |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 40 | <version>1.4.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Bundle-Name>${pom.name}</Bundle-Name> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 45 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 46 | <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author> |
| 47 | <Bundle-Description> |
| 48 | OSGi Generic Control Point to control UPnPDevice services |
| 49 | </Bundle-Description> |
| 50 | <Bundle-SymbolicName>org.apache.felix.upnp.tester</Bundle-SymbolicName> |
| 51 | <Bundle-Activator>org.apache.felix.upnp.tester.Activator</Bundle-Activator> |
| 52 | <Private-Package>org.apache.felix.upnp.tester.*</Private-Package> |
| 53 | <Import-Package>*</Import-Package> |
| 54 | </instructions> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 59 | |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 60 | <dependencies> |
| 61 | <dependency> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 62 | <groupId>org.apache.felix</groupId> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 63 | <artifactId>org.osgi.core</artifactId> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 64 | <version>1.0.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 65 | <scope>provided</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 68 | <groupId>org.apache.felix</groupId> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 69 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 70 | <version>1.0.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.felix</groupId> |
| 75 | <artifactId>org.apache.felix.upnp.basedriver</artifactId> |
| 76 | <version>0.8.0</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 77 | </dependency> |
Stefano Lenzi | f6c6d70 | 2008-09-10 20:48:02 +0000 | [diff] [blame] | 78 | <!-- dependency> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 79 | Note: this dependency might be restored when (if) a converter utility will be exposed by extra bundle. |
| 80 | So far Tester uses the Converter class of the basedriver (it should be fixed) |
| 81 | <groupId>org.apache.felix</groupId> |
| 82 | <artifactId>org.apache.felix.upnp.extra</artifactId> |
| 83 | <version>0.3.0-SNAPSHOT</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency --> |
| 86 | </dependencies> |
| 87 | </project> |
| 88 | |