blob: 5a268ce13bb6600b1fe2c42a598d3bfee66110f8 [file] [log] [blame]
Francesco Furfari91af5da2006-04-04 23:44:23 +00001<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>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <groupId>org.apache.felix</groupId>
11 <name>Apache Felix UPnP Tester</name>
12 <artifactId>org.apache.felix.upnp.tester</artifactId>
13 <version>0.1.0-SNAPSHOT</version>
14 <!-- <url>http://maven.apache.org</url> -->
15 <dependencies>
16 <dependency>
17 <groupId>org.osgi</groupId>
18 <artifactId>org.osgi.core</artifactId>
19 <version>4.0</version>
20 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>org.osgi</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
25 <version>4.0</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.upnp.extra</artifactId>
31 <version>1.0-SNAPSHOT</version>
32 <scope>provided</scope>
33 </dependency>
34 </dependencies>
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix.plugins</groupId>
39 <artifactId>maven-osgi-plugin</artifactId>
40 <!-- <version>${pom.version}</version> -->
41 <extensions>true</extensions>
42 <configuration>
43 <osgiManifest>
44 <bundleName>UPnPTester</bundleName>
45 <bundleVendor>Apache Software Foundation</bundleVendor>
46 <bundleVersion>0.1.0</bundleVersion>
47 <bundleDescription>
48 OSGi Generic Control Point to control UPnPDevice services
49 </bundleDescription>
50 <bundleSymbolicName>org.apache.felix.upnp.tester</bundleSymbolicName>
51 <bundleActivator>org.apache.felix.upnp.tester.Activator</bundleActivator>
52 <importPackage>
53 org.osgi.framework;specification-version=1.3,org.osgi.service.upnp;specification-version=1.1,org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0
54 </importPackage>
55 </osgiManifest>
56 <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile>
57 </configuration>
58 </plugin>
59 </plugins>
60 <resources>
61 <resource>
62 <directory>src/main/resources</directory>
63 </resource>
64 </resources>
65 </build>
66</project>