| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <relativePath>../../pom/pom.xml</relativePath> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>bundle</packaging> |
| <name>Apache Felix Example Dynamic Dictionary Client</name> |
| <artifactId>org.apache.felix.examples.dictionaryclient2</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>1.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>1.0.0</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| <Bundle-Name>Example Dynamic Dictionary Client</Bundle-Name> |
| <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| <Bundle-Description> |
| A client bundle with more complex requirements for the dictionary. |
| </Bundle-Description> |
| <Bundle-Activator> |
| org.apache.felix.examples.dictionaryclient2.Activator |
| </Bundle-Activator> |
| <Private-Package> |
| org.apache.felix.examples.dictionaryclient2.* |
| </Private-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |