blob: 4c0f4d2871d5a89d26327468f5d133513113d3d4 [file] [log] [blame]
Karl Pauls12fab7e2006-05-06 11:59:40 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix EventAdmin Bridge UPnP</name>
10 <artifactId>org.apache.felix.eventadmin.bridge.upnp</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>EventAdmin Bridge UPnP</bundleName>
35 <bundleVendor>Apache Software Foundation</bundleVendor>
36 <bundleDescription>
37 This bundle provides a bridge between UPnP and EventAdmin events.
38 </bundleDescription>
Karl Pauls8e912cf2006-06-21 20:29:23 +000039 <bundleActivator>auto-detect</bundleActivator>
40 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Karl Pauls12fab7e2006-05-06 11:59:40 +000041 <importService>
Karl Pauls8e912cf2006-06-21 20:29:23 +000042 org.osgi.service.event.EventAdmin,
43 org.osgi.service.event.EventHandler
Karl Pauls12fab7e2006-05-06 11:59:40 +000044 </importService>
45 <exportService>
46 org.osgi.service.upnp.UPnPEventListener
47 </exportService>
48 </osgiManifest>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53</project>