blob: e867d49682a3279f72298ec878ec7a8063600392 [file] [log] [blame]
Francesco Furfari917c5e22008-01-02 15:30:40 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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">
Francesco Furfarifed35de2007-08-28 18:10:40 +00003 <parent>
Francesco Furfarifed35de2007-08-28 18:10:40 +00004 <artifactId>felix</artifactId>
Francesco Furfari917c5e22008-01-02 15:30:40 +00005 <groupId>org.apache.felix</groupId>
Francesco Furfarifed35de2007-08-28 18:10:40 +00006 <version>1.1.0-SNAPSHOT</version>
7 <relativePath>../pom/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
Francesco Furfarifed35de2007-08-28 18:10:40 +000010 <groupId>org.apache.felix</groupId>
Francesco Furfarifed35de2007-08-28 18:10:40 +000011 <artifactId>org.apache.felix.upnp.tester</artifactId>
Francesco Furfari917c5e22008-01-02 15:30:40 +000012 <packaging>bundle</packaging>
13 <name>Apache Felix UPnP Tester</name>
Francesco Furfarifed35de2007-08-28 18:10:40 +000014 <version>0.2.0-SNAPSHOT</version>
Francesco Furfarifed35de2007-08-28 18:10:40 +000015 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.felix</groupId>
19 <artifactId>maven-bundle-plugin</artifactId>
20 <version>1.1.0-SNAPSHOT</version>
21 <extensions>true</extensions>
22 <configuration>
23 <instructions>
24 <Bundle-Name>${pom.name}</Bundle-Name>
25 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
26 <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author>
27 <Bundle-Description>
28 OSGi Generic Control Point to control UPnPDevice services
29 </Bundle-Description>
30 <Bundle-SymbolicName>org.apache.felix.upnp.tester</Bundle-SymbolicName>
31 <Bundle-Activator>org.apache.felix.upnp.tester.Activator</Bundle-Activator>
32 <Private-Package>org.apache.felix.upnp.tester.*</Private-Package>
33 <Import-Package>*</Import-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
Francesco Furfari917c5e22008-01-02 15:30:40 +000039 <dependencies>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.osgi.core</artifactId>
43 <version>1.1.0-SNAPSHOT</version>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>${pom.groupId}</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 <version>0.9.0-SNAPSHOT</version>
50 <scope>provided</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.upnp.basedriver</artifactId>
55 <version>0.3.0-SNAPSHOT</version>
56 </dependency>
57 <!-- dependency>
58 Note: this dependency might be restored when (if) a converter utility will be exposed by extra bundle.
59 So far Tester uses the Converter class of the basedriver (it should be fixed)
60 <groupId>org.apache.felix</groupId>
61 <artifactId>org.apache.felix.upnp.extra</artifactId>
62 <version>0.3.0-SNAPSHOT</version>
63 <scope>provided</scope>
64 </dependency -->
65 </dependencies>
Francesco Furfarifed35de2007-08-28 18:10:40 +000066</project>
Francesco Furfari917c5e22008-01-02 15:30:40 +000067