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> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 27 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 28 | </parent> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 29 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 30 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 32 | <name>Apache Felix Examples: Spell Check w/ SCR</name> |
| 33 | <artifactId>org.apache.felix.examples.spellcheckscr</artifactId> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 34 | <description>${description}</description> |
| 35 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>${pom.groupId}</groupId> |
| 39 | <artifactId>org.osgi.core</artifactId> |
| 40 | <version>${pom.version}</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>${pom.groupId}</groupId> |
| 45 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
| 46 | <version>${pom.version}</version> |
| 47 | <scope>provided</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>${pom.groupId}</groupId> |
| 51 | <artifactId>org.apache.felix.examples.spellcheckservice</artifactId> |
| 52 | <version>${pom.version}</version> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 55 | </dependencies> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 56 | |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 60 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 61 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 62 | <extensions>true</extensions> |
| 63 | <configuration> |
Richard S. Hall | 947440a | 2007-05-01 16:11:06 +0000 | [diff] [blame] | 64 | <instructions> |
| 65 | <!-- docs in http://cwiki.apache.org/FELIX/bundle-plugin-for-maven-bnd.html and http://cwiki.apache.org/FELIX/osgi-plugin-for-maven-2.html --> |
| 66 | <Private-Package>${pom.artifactId}.*</Private-Package> |
| 67 | <Import-Package>*</Import-Package> |
| 68 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 69 | <Bundle-Description>${description}</Bundle-Description> |
| 70 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 71 | <Service-Component>OSGI-INF/component.xml</Service-Component> |
| 72 | </instructions> |
Richard S. Hall | 2cbaf53 | 2006-08-10 13:11:19 +0000 | [diff] [blame] | 73 | </configuration> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | </build> |
| 77 | </project> |