blob: dfe7143889b543a4f783e3eed3adfc8a54d15e68 [file] [log] [blame]
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.8.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>osgi-bundle</packaging>
<name>Apache Felix EventAdmin Bridge UPnP</name>
<artifactId>org.apache.felix.eventadmin.bridge.upnp</artifactId>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${pom.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${pom.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<version>${pom.version}</version>
<extensions>true</extensions>
<configuration>
<osgiManifest>
<bundleName>EventAdmin Bridge UPnP</bundleName>
<bundleVendor>Apache Software Foundation</bundleVendor>
<bundleDescription>
This bundle provides a bridge between UPnP and EventAdmin events.
</bundleDescription>
<bundleActivator>
org.apache.felix.eventadmin.bridge.upnp.Activator
</bundleActivator>
<importPackage>
org.osgi.framework, org.osgi.service.event; version=1.0.1, org.osgi.service.upnp; version=1.1
</importPackage>
<importService>
org.osgi.service.event.EventAdmin
</importService>
<exportService>
org.osgi.service.upnp.UPnPEventListener
</exportService>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>