blob: 98ffc0b6b325cccfb72e66702cede8d955f988c5 [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 Configuration</name>
<artifactId>org.apache.felix.eventadmin.bridge.configuration</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 Configuration</bundleName>
<bundleVendor>Apache Software Foundation</bundleVendor>
<bundleDescription>
This bundle provides a bridge between Configuration and EventAdmin events.
</bundleDescription>
<bundleActivator>auto-detect</bundleActivator>
<bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>