blob: 7301166bc2d49513b99d0c54d7181149b3180c85 [file] [log] [blame]
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.9.0-incubator-SNAPSHOT</version>
<relativePath>../../pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>osgi-bundle</packaging>
<name>Apache Felix Examples: Dynamic Dictionary Client</name>
<artifactId>org.apache.felix.examples.dictionaryclient2</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.apache.felix.examples.dictionaryservice</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>Dynamic Dictionary Client Example</bundleName>
<bundleVendor>Apache Software Foundation</bundleVendor>
<bundleDescription>
A client bundle with more complex requirements for the dictionary.
</bundleDescription>
<bundleActivator>
org.apache.felix.examples.dictionaryclient2.Activator
</bundleActivator>
<importPackage>
org.osgi.framework, org.apache.felix.examples.dictionaryservice
</importPackage>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>