Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 19 | <project> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 20 | <properties> |
| 21 | <description>A bundle that registers a spell checking service based on Service Component Runtime.</description> |
| 22 | </properties> |
| 23 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.apache.felix</groupId> |
| 26 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 27 | <version>1.0.4</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 28 | <relativePath>../../pom/pom.xml</relativePath> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 29 | </parent> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 30 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 31 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 33 | <name>Apache Felix Example Spell Check w/ SCR</name> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 34 | <artifactId>org.apache.felix.examples.spellcheckscr</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 35 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 36 | <description>${description}</description> |
| 37 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 42 | <version>1.0.0</version> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>${pom.groupId}</groupId> |
| 47 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 48 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>${pom.groupId}</groupId> |
| 53 | <artifactId>org.apache.felix.examples.spellcheckservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 54 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 55 | <scope>provided</scope> |
| 56 | </dependency> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 57 | </dependencies> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 58 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 59 | <build> |
| 60 | <plugins> |
| 61 | <plugin> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 62 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 63 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 64 | <version>1.4.0</version> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 65 | <extensions>true</extensions> |
| 66 | <configuration> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 67 | <instructions> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 68 | <Private-Package>${pom.artifactId}.*</Private-Package> |
| 69 | <Import-Package>*</Import-Package> |
| 70 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 71 | <Bundle-Description>${description}</Bundle-Description> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 72 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 73 | <Service-Component>OSGI-INF/component.xml</Service-Component> |
| 74 | </instructions> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | </project> |