Richard S. Hall | bad49dc | 2007-07-13 16:08: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 | --> |
| 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 Triangle Service</name> |
| 30 | <description>A simple service for drawing triangles.</description> |
| 31 | <groupId>org.apache.felix.example</groupId> |
| 32 | <artifactId>servicebased.triangle</artifactId> |
| 33 | <version>1.0.0</version> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 38 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 51 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 52 | <extensions>true</extensions> |
| 53 | <configuration> |
| 54 | <instructions> |
| 55 | <Private-Package>org.apache.felix.example.servicebased.triangle.*</Private-Package> |
| 56 | <Bundle-Activator>org.apache.felix.example.servicebased.triangle.Activator</Bundle-Activator> |
| 57 | </instructions> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | <pluginRepositories> |
| 63 | <pluginRepository> |
| 64 | <id>apache.snapshots</id> |
| 65 | <name>snapshot plugins</name> |
| 66 | <url> |
| 67 | http://people.apache.org/repo/m2-snapshot-repository |
| 68 | </url> |
| 69 | <releases> |
| 70 | <enabled>false</enabled> |
| 71 | </releases> |
| 72 | <snapshots> |
| 73 | <enabled>true</enabled> |
| 74 | </snapshots> |
| 75 | </pluginRepository> |
| 76 | </pluginRepositories> |
| 77 | </project> |