blob: d7f42d9466891828db02c9fc874909f1c12f1ed4 [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. Hall8e1e6f32006-03-09 20:37:02 +00005 <version>0.8.0-SNAPSHOT</version>
Alex Karasulu0e678d62006-03-07 06:35:08 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Examples: Dictionary Client</name>
10 <artifactId>org.apache.felix.examples.dictionaryclient</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000014 <artifactId>org.osgi.core</artifactId>
Alex Karasulu0e678d62006-03-07 06:35:08 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.apache.felix.examples.dictionaryservice</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>Dictionary Client Example</bundleName>
35 <bundleVendor>Apache Software Foundation</bundleVendor>
36 <bundleDescription>
37 A bundle using the dictionary service if it finds it at startup.
38 </bundleDescription>
39 <bundleActivator>
40 org.apache.felix.examples.dictionaryclient.Activator
41 </bundleActivator>
42 <importPackage>
43 org.apache.felix.examples.dictionaryservice
44 </importPackage>
45 </osgiManifest>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50</project>