blob: 379d145a0f8422a17aa4d9d091b1ec3a999dd81e [file] [log] [blame]
Alex Karasulu00ab8022006-03-07 05:18:57 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hall8e1e6f32006-03-09 20:37:02 +00005 <version>0.8.0-SNAPSHOT</version>
Alex Karasulu00ab8022006-03-07 05:18:57 +00006 </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>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000014 <artifactId>org.osgi.core</artifactId>
Alex Karasulu00ab8022006-03-07 05:18:57 +000015 <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>