Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +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 Extension</name> |
| 30 | <description>A simple extension for drawing triangles.</description> |
| 31 | <groupId>org.apache.felix.example</groupId> |
| 32 | <artifactId>extenderbased.triangle</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.1.0-SNAPSHOT</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix.example</groupId> |
| 42 | <artifactId>extenderbased.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.1.0-SNAPSHOT</version> |
| 52 | <extensions>true</extensions> |
| 53 | <configuration> |
| 54 | <instructions> |
| 55 | <Extension-Name>Triangle</Extension-Name> |
| 56 | <Extension-Icon>org/apache/felix/example/extenderbased/triangle/triangle.png</Extension-Icon> |
| 57 | <Extension-Class>org.apache.felix.example.extenderbased.triangle.Triangle</Extension-Class> |
| 58 | <Private-Package>org.apache.felix.example.extenderbased.triangle.*</Private-Package> |
| 59 | </instructions> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | <pluginRepositories> |
| 65 | <pluginRepository> |
| 66 | <id>apache.snapshots</id> |
| 67 | <name>snapshot plugins</name> |
| 68 | <url> |
| 69 | http://people.apache.org/repo/m2-snapshot-repository |
| 70 | </url> |
| 71 | <releases> |
| 72 | <enabled>false</enabled> |
| 73 | </releases> |
| 74 | <snapshots> |
| 75 | <enabled>true</enabled> |
| 76 | </snapshots> |
| 77 | </pluginRepository> |
| 78 | </pluginRepositories> |
| 79 | </project> |