<?xml version="1.0" encoding="utf-8" ?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.bundlebee</groupId> <artifactId>org.bundlebee</artifactId> <version>0.5.4-SNAPSHOT</version> </parent> <groupId>org.bundlebee</groupId> <artifactId>org.bundlebee.pulsar</artifactId> <packaging>bundle</packaging> <name>BundleBee Pulsar Test Bundle</name> <description>Trivial test bundle that calls another service periodically.</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>org.bundlebee.testbundle</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.osgi</groupId> <artifactId>org.eclipse.osgi</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-Activator>org.bundlebee.pulsar.impl.Activator</Bundle-Activator> <Export-Package>org.bundlebee.pulsar.*</Export-Package> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> </instructions> </configuration> </plugin> </plugins> </build> </project>