blob: 482c979cffa359f5acb0c86336da23b7d22e2322 [file] [log] [blame]
Alex Karasulu1b368052006-03-07 19:57:46 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Examples: Spell Check w/ Service Binder</name>
10 <artifactId>org.apache.felix.examples.spellcheckbinder</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi</artifactId>
15 <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 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.apache.felix.examples.spellcheckservice</artifactId>
27 <version>${pom.version}</version>
28 <scope>provided</scope>
29 </dependency>
30 <dependency>
31 <groupId>org.ungoverned.gravity.servicebinder</groupId>
32 <artifactId>servicebinder</artifactId>
33 <version>1.0</version>
34 <scope>provided</scope>
35 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix.plugins</groupId>
41 <artifactId>maven-osgi-plugin</artifactId>
42 <version>${pom.version}</version>
43 <extensions>true</extensions>
44 <configuration>
45 <osgiManifest>
46 <bundleName>Spell Check w/ ServiceBinder Example</bundleName>
47 <bundleVendor>Apache Software Foundation</bundleVendor>
48 <bundleDescription>
49 A bundle that registers a spell checking service based on
50 service binder.
51 </bundleDescription>
52 <bundleActivator>
53 org.apache.felix.examples.spellcheckbinder.Activator
54 </bundleActivator>
55 <importPackage>
56 org.apache.felix.examples.dictionaryservice, org.ungoverned.gravity.servicebinder, org.apache.felix.examples.spellcheckservice
57 </importPackage>
58 </osgiManifest>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63</project>