Alex Karasulu | 969e4f8 | 2006-03-07 13:53:39 +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 | 969e4f8 | 2006-03-07 13:53:39 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
| 9 | <name>Apache Felix Examples: Spell Check Service</name> |
| 10 | <artifactId>org.apache.felix.examples.spellcheckservice</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 | 969e4f8 | 2006-03-07 13:53:39 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
Alex Karasulu | e4def9f | 2006-03-07 16:50:26 +0000 | [diff] [blame] | 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> |
Alex Karasulu | 969e4f8 | 2006-03-07 13:53:39 +0000 | [diff] [blame] | 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> |
| 34 | <bundleName>Spell Check Service Example</bundleName> |
| 35 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 36 | <bundleDescription> |
| 37 | A bundle that registers a spell checking service. |
| 38 | </bundleDescription> |
| 39 | <bundleActivator> |
| 40 | org.apache.felix.examples.spellcheckservice.impl.Activator |
| 41 | </bundleActivator> |
Alex Karasulu | e4def9f | 2006-03-07 16:50:26 +0000 | [diff] [blame] | 42 | <importPackage> |
Karl Pauls | 3b98a3e | 2006-04-18 21:12:09 +0000 | [diff] [blame] | 43 | org.osgi.framework, org.apache.felix.examples.dictionaryservice |
Alex Karasulu | e4def9f | 2006-03-07 16:50:26 +0000 | [diff] [blame] | 44 | </importPackage> |
Alex Karasulu | 969e4f8 | 2006-03-07 13:53:39 +0000 | [diff] [blame] | 45 | <exportPackage> |
| 46 | org.apache.felix.examples.spellcheckservice |
| 47 | </exportPackage> |
| 48 | </osgiManifest> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | </project> |