blob: 3744ad475f2bd96fcc7cc0e4acf967c945b1b0f2 [file] [log] [blame]
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00001<!--
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"); you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-->
Alex Karasulu1b368052006-03-07 19:57:46 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Alex Karasulu1b368052006-03-07 19:57:46 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall02496082007-08-23 15:29:20 +000027 <packaging>bundle</packaging>
28 <name>Apache Felix Example Spell Check w/ Service Binder</name>
Alex Karasulu1b368052006-03-07 19:57:46 +000029 <artifactId>org.apache.felix.examples.spellcheckbinder</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000030 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000034 <artifactId>org.osgi.core</artifactId>
Richard S. Hall02496082007-08-23 15:29:20 +000035 <version>1.0.0</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.apache.felix.examples.dictionaryservice</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000041 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000042 <scope>provided</scope>
43 </dependency>
44 <dependency>
45 <groupId>${pom.groupId}</groupId>
46 <artifactId>org.apache.felix.examples.spellcheckservice</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000047 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000048 <scope>provided</scope>
49 </dependency>
50 <dependency>
Michael E. Rodriguez3b4e4ef2006-04-02 20:07:31 +000051 <groupId>${pom.groupId}</groupId>
52 <artifactId>org.apache.felix.servicebinder</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000053 <version>0.9.0-SNAPSHOT</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000054 <scope>provided</scope>
55 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
Richard S. Hall02496082007-08-23 15:29:20 +000060 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000062 <version>1.4.0</version>
Alex Karasulu1b368052006-03-07 19:57:46 +000063 <extensions>true</extensions>
64 <configuration>
Richard S. Hall02496082007-08-23 15:29:20 +000065 <instructions>
66 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
67 <Metadata-Location>metadata.xml</Metadata-Location>
68 <Bundle-Name>Example Spell Check w/ Service Binder</Bundle-Name>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000069 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall02496082007-08-23 15:29:20 +000070 <Bundle-Description>
Alex Karasulu5ae51c52006-03-07 21:17:07 +000071 A bundle that registers a spell checking service based on service binder.
Richard S. Hall02496082007-08-23 15:29:20 +000072 </Bundle-Description>
73 <Bundle-Activator>
Alex Karasulu1b368052006-03-07 19:57:46 +000074 org.apache.felix.examples.spellcheckbinder.Activator
Richard S. Hall02496082007-08-23 15:29:20 +000075 </Bundle-Activator>
76 <Private-Package>
77 org.apache.felix.examples.spellcheckbinder.*
78 </Private-Package>
79 </instructions>
Alex Karasulu1b368052006-03-07 19:57:46 +000080 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84</project>