blob: 51d12b655e9f6ed14497b758f19e921b77a64fa4 [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>
Richard S. Halla9ba6162006-04-24 14:52:09 +000017 <groupId>${pom.groupId}</groupId>
Francesco Furfari91af5da2006-04-04 23:44:23 +000018 <artifactId>org.osgi.core</artifactId>
Richard S. Halla9ba6162006-04-24 14:52:09 +000019 <version>0.8.0-SNAPSHOT</version>
Francesco Furfari91af5da2006-04-04 23:44:23 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000023 <groupId>${pom.groupId}</groupId>
Francesco Furfari91af5da2006-04-04 23:44:23 +000024 <artifactId>org.osgi.compendium</artifactId>
Richard S. Halla9ba6162006-04-24 14:52:09 +000025 <version>0.8.0-SNAPSHOT</version>
Francesco Furfari91af5da2006-04-04 23:44:23 +000026 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.apache.felix.upnp.extra</artifactId>
Francesco Furfarie43d55c2006-04-05 17:20:16 +000031 <version>0.1.0-SNAPSHOT</version>
Francesco Furfari91af5da2006-04-04 23:44:23 +000032 <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>
Francesco Furfari2d668b82006-04-07 13:19:45 +000053 javax.swing,javax.swing.event,javax.swing.tree,javax.swing.table,javax.swing.text,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
Francesco Furfari91af5da2006-04-04 23:44:23 +000054 </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>