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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-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> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
| 10 | <name>Apache Felix Example Spell Check w/ Service Binder</name> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 11 | <artifactId>org.apache.felix.examples.spellcheckbinder</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 16 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 17 | <version>1.0.0</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 23 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>${pom.groupId}</groupId> |
| 28 | <artifactId>org.apache.felix.examples.spellcheckservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 29 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 30 | <scope>provided</scope> |
| 31 | </dependency> |
| 32 | <dependency> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 33 | <groupId>${pom.groupId}</groupId> |
| 34 | <artifactId>org.apache.felix.servicebinder</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 35 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | </dependencies> |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>maven-bundle-plugin</artifactId> |
| 44 | <version>1.0.0</version> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 45 | <extensions>true</extensions> |
| 46 | <configuration> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 47 | <instructions> |
| 48 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 49 | <Metadata-Location>metadata.xml</Metadata-Location> |
| 50 | <Bundle-Name>Example Spell Check w/ Service Binder</Bundle-Name> |
| 51 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 52 | <Bundle-Description> |
Alex Karasulu | 5ae51c5 | 2006-03-07 21:17:07 +0000 | [diff] [blame] | 53 | A bundle that registers a spell checking service based on service binder. |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 54 | </Bundle-Description> |
| 55 | <Bundle-Activator> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 56 | org.apache.felix.examples.spellcheckbinder.Activator |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 57 | </Bundle-Activator> |
| 58 | <Private-Package> |
| 59 | org.apache.felix.examples.spellcheckbinder.* |
| 60 | </Private-Package> |
| 61 | </instructions> |
Alex Karasulu | 1b36805 | 2006-03-07 19:57:46 +0000 | [diff] [blame] | 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | </project> |