blob: 15f455f6a5d3caa584a7be54fc2b5aaeb4fb0ef7 [file] [log] [blame]
Alex Karasulu0e678d62006-03-07 06:35:08 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../../pom/pom.xml</relativePath>
Alex Karasulu0e678d62006-03-07 06:35:08 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <name>Apache Felix Examples: Dictionary Client</name>
11 <artifactId>org.apache.felix.examples.dictionaryclient</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000015 <artifactId>org.osgi.core</artifactId>
Alex Karasulu0e678d62006-03-07 06:35:08 +000016 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.apache.felix.examples.dictionaryservice</artifactId>
22 <version>${pom.version}</version>
23 <scope>provided</scope>
24 </dependency>
25 </dependencies>
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.felix.plugins</groupId>
30 <artifactId>maven-osgi-plugin</artifactId>
31 <version>${pom.version}</version>
32 <extensions>true</extensions>
33 <configuration>
34 <osgiManifest>
35 <bundleName>Dictionary Client Example</bundleName>
36 <bundleVendor>Apache Software Foundation</bundleVendor>
37 <bundleDescription>
38 A bundle using the dictionary service if it finds it at startup.
39 </bundleDescription>
40 <bundleActivator>
41 org.apache.felix.examples.dictionaryclient.Activator
42 </bundleActivator>
43 <importPackage>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000044 org.osgi.framework, org.apache.felix.examples.dictionaryservice
Alex Karasulu0e678d62006-03-07 06:35:08 +000045 </importPackage>
46 </osgiManifest>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51</project>