Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 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> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 14 | <artifactId>org.osgi.core</artifactId> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 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> |
Karl Pauls | 3b98a3e | 2006-04-18 21:12:09 +0000 | [diff] [blame] | 39 | <importPackage> |
| 40 | org.osgi.framework |
| 41 | </importPackage> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 42 | </osgiManifest> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
| 47 | </project> |