blob: 0ed6296531f37855a54371602d5f2b76a02e28bc [file] [log] [blame]
Alex Karasulu00ab8022006-03-07 05:18:57 +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: English Dictionary Service</name>
10 <artifactId>org.apache.felix.examples.dictionaryservice</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 </dependencies>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix.plugins</groupId>
23 <artifactId>maven-osgi-plugin</artifactId>
24 <version>${pom.version}</version>
25 <extensions>true</extensions>
26 <configuration>
27 <osgiManifest>
28 <bundleName>English Dictionary Example</bundleName>
29 <bundleVendor>Apache Software Foundation</bundleVendor>
30 <bundleDescription>
31 A bundle that registersan English dictionary service.
32 </bundleDescription>
33 <bundleActivator>
34 org.apache.felix.examples.dictionaryservice.impl.Activator
35 </bundleActivator>
36 <exportPackage>
37 org.apache.felix.examples.dictionaryservice
38 </exportPackage>
39 </osgiManifest>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44</project>