blob: 25202b85561c77f3f861bf41dc48c01878b24a45 [file] [log] [blame]
Alex Karasulu1b368052006-03-07 19:57:46 +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 Karasulu1b368052006-03-07 19:57:46 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <name>Apache Felix Examples: Spell Check w/ Service Binder</name>
11 <artifactId>org.apache.felix.examples.spellcheckbinder</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 Karasulu1b368052006-03-07 19:57:46 +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 <dependency>
26 <groupId>${pom.groupId}</groupId>
27 <artifactId>org.apache.felix.examples.spellcheckservice</artifactId>
28 <version>${pom.version}</version>
29 <scope>provided</scope>
30 </dependency>
31 <dependency>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000032 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.servicebinder</artifactId>
34 <version>${pom.version}</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000035 <scope>provided</scope>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix.plugins</groupId>
42 <artifactId>maven-osgi-plugin</artifactId>
43 <version>${pom.version}</version>
44 <extensions>true</extensions>
45 <configuration>
46 <osgiManifest>
Alex Karasulu5ae51c52006-03-07 21:17:07 +000047 <entries>
48 <property>
49 <name>Metadata-Location</name>
50 <value>metadata.xml</value>
51 </property>
52 </entries>
Alex Karasulu1b368052006-03-07 19:57:46 +000053 <bundleName>Spell Check w/ ServiceBinder Example</bundleName>
54 <bundleVendor>Apache Software Foundation</bundleVendor>
55 <bundleDescription>
Alex Karasulu5ae51c52006-03-07 21:17:07 +000056 A bundle that registers a spell checking service based on service binder.
Alex Karasulu1b368052006-03-07 19:57:46 +000057 </bundleDescription>
58 <bundleActivator>
59 org.apache.felix.examples.spellcheckbinder.Activator
60 </bundleActivator>
61 <importPackage>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000062 org.osgi.framework, org.apache.felix.examples.dictionaryservice, org.apache.felix.servicebinder, org.apache.felix.examples.spellcheckservice
Alex Karasulu1b368052006-03-07 19:57:46 +000063 </importPackage>
64 </osgiManifest>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69</project>