Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +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 | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
| 9 | <name>Apache Felix Examples: Spell Check w/ Service Binder</name> |
| 10 | <artifactId>org.apache.felix.examples.spellcheckbinder</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 | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 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> |
| 24 | <dependency> |
| 25 | <groupId>${pom.groupId}</groupId> |
| 26 | <artifactId>org.apache.felix.examples.spellcheckservice</artifactId> |
| 27 | <version>${pom.version}</version> |
| 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 31 | <groupId>${pom.groupId}</groupId> |
| 32 | <artifactId>org.apache.felix.servicebinder</artifactId> |
| 33 | <version>${pom.version}</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix.plugins</groupId> |
| 41 | <artifactId>maven-osgi-plugin</artifactId> |
| 42 | <version>${pom.version}</version> |
| 43 | <extensions>true</extensions> |
| 44 | <configuration> |
| 45 | <osgiManifest> |
Alex Karasulu | 5ae51c5 | 2006-03-07 21:17:07 +0000 | [diff] [blame] | 46 | <entries> |
| 47 | <property> |
| 48 | <name>Metadata-Location</name> |
| 49 | <value>metadata.xml</value> |
| 50 | </property> |
| 51 | </entries> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 52 | <bundleName>Spell Check w/ ServiceBinder Example</bundleName> |
| 53 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 54 | <bundleDescription> |
Alex Karasulu | 5ae51c5 | 2006-03-07 21:17:07 +0000 | [diff] [blame] | 55 | A bundle that registers a spell checking service based on service binder. |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 56 | </bundleDescription> |
| 57 | <bundleActivator> |
| 58 | org.apache.felix.examples.spellcheckbinder.Activator |
| 59 | </bundleActivator> |
| 60 | <importPackage> |
Karl Pauls | 3b98a3e | 2006-04-18 21:12:09 +0000 | [diff] [blame] | 61 | org.osgi.framework, org.apache.felix.examples.dictionaryservice, org.apache.felix.servicebinder, org.apache.felix.examples.spellcheckservice |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 62 | </importPackage> |
| 63 | </osgiManifest> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
| 68 | </project> |