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