blob: c63c9bceb8727f82fbdead0f62093bca305c2ea0 [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</name>
<artifactId>org.apache.felix.eventadmin</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</bundleName>
<bundleVendor>Apache Software Foundation</bundleVendor>
<bundleDescription>
This bundle provides an implementation of the OSGi R4 EventAdmin service.
</bundleDescription>
<bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
<bundleActivator>
org.apache.felix.eventadmin.impl.Activator
</bundleActivator>
<importPackage>
org.osgi.framework, org.osgi.service.event; version=1.0.1
</importPackage>
<dynamicImportPackage>
org.osgi.service.log
</dynamicImportPackage>
<importService>
org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
</importService>
<exportService>
org.osgi.service.event.EventAdmin
</exportService>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>