Richard S. Hall | f44c499 | 2009-02-03 02:29:43 +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 | --> |
| 19 | <project> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.apache</groupId> |
| 23 | <artifactId>apache</artifactId> |
| 24 | <version>4</version> |
| 25 | </parent> |
| 26 | |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix Trapezoid Service</name> |
| 30 | <description>A simple service for drawing trapezoids.</description> |
| 31 | <groupId>org.apache.felix.example</groupId> |
| 32 | <artifactId>servicebased.trapezoid</artifactId> |
| 33 | <version>1.0.0</version> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
| 38 | <version>1.0.0</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix.example</groupId> |
| 42 | <artifactId>servicebased.host</artifactId> |
| 43 | <version>1.0.0</version> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>maven-bundle-plugin</artifactId> |
| 51 | <version>1.0.0</version> |
| 52 | <extensions>true</extensions> |
| 53 | <configuration> |
| 54 | <instructions> |
| 55 | <Private-Package>org.apache.felix.example.servicebased.trapezoid.*</Private-Package> |
| 56 | <Bundle-Activator>org.apache.felix.example.servicebased.trapezoid.Activator</Bundle-Activator> |
| 57 | </instructions> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | </project> |