blob: 625cff55957d68efccd96e0659d62effd73b8ef2 [file] [log] [blame]
Richard S. Hall2cbaf532006-08-10 13:11:19 +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>
Richard S. Hall2cbaf532006-08-10 13:11:19 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Examples: Spell Check w/ SCR</name>
10 <artifactId>org.apache.felix.examples.spellcheckscr</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</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>
Richard S. Hall2cbaf532006-08-10 13:11:19 +000030 </dependencies>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix.plugins</groupId>
35 <artifactId>maven-osgi-plugin</artifactId>
36 <version>${pom.version}</version>
37 <extensions>true</extensions>
38 <configuration>
39 <osgiManifest>
40 <entries>
41 <property>
42 <name>Service-Component</name>
43 <value>OSGI-INF/component.xml</value>
44 </property>
45 </entries>
46 <bundleName>Spell Check w/ SCR Example</bundleName>
47 <bundleVendor>Apache Software Foundation</bundleVendor>
48 <bundleDescription>
49 A bundle that registers a spell checking service based on Service Component Runtime.
50 </bundleDescription>
51 <bundleActivator>
52 org.apache.felix.examples.spellcheckscr.Activator
53 </bundleActivator>
54 <importPackage>
Richard S. Hall5a623f82006-09-22 18:56:58 +000055 org.osgi.framework, org.apache.felix.examples.dictionaryservice, org.apache.felix.examples.spellcheckservice
Richard S. Hall2cbaf532006-08-10 13:11:19 +000056 </importPackage>
57 </osgiManifest>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>