blob: 31961bae546a2d94266d8454ff91a7e0c953395f [file] [log] [blame]
Alex Karasulud088cfb2006-03-07 16:57:38 +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>
Alex Karasulud088cfb2006-03-07 16:57:38 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
Alex Karasulue2412e32006-03-07 19:42:27 +00009 <name>Apache Felix Examples: Spell Check Client</name>
10 <artifactId>org.apache.felix.examples.spellcheckclient</artifactId>
Alex Karasulud088cfb2006-03-07 16:57:38 +000011 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000014 <artifactId>org.osgi.core</artifactId>
Alex Karasulud088cfb2006-03-07 16:57:38 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
Alex Karasulue2412e32006-03-07 19:42:27 +000020 <artifactId>org.apache.felix.examples.spellcheckservice</artifactId>
Alex Karasulud088cfb2006-03-07 16:57:38 +000021 <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>
Alex Karasulue2412e32006-03-07 19:42:27 +000034 <bundleName>Spell Check Client Example</bundleName>
Alex Karasulud088cfb2006-03-07 16:57:38 +000035 <bundleVendor>Apache Software Foundation</bundleVendor>
36 <bundleDescription>
Alex Karasulue2412e32006-03-07 19:42:27 +000037 A bundle using the spell check service.
Alex Karasulud088cfb2006-03-07 16:57:38 +000038 </bundleDescription>
39 <bundleActivator>
Alex Karasulue2412e32006-03-07 19:42:27 +000040 org.apache.felix.examples.spellcheckclient.Activator
Alex Karasulud088cfb2006-03-07 16:57:38 +000041 </bundleActivator>
42 <importPackage>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000043 org.osgi.framework, org.apache.felix.examples.spellcheckservice
Alex Karasulud088cfb2006-03-07 16:57:38 +000044 </importPackage>
45 </osgiManifest>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50</project>