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 | --> |
Richard S. Hall | 0db8887 | 2012-03-07 16:24:47 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 20 | |
| 21 | <parent> |
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 24 | <version>1.0.4</version> |
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <packaging>bundle</packaging> |
| 30 | <name>Apache Felix Square Extension</name> |
| 31 | <description>A simple extension for drawing squares.</description> |
| 32 | <groupId>org.apache.felix.example</groupId> |
| 33 | <artifactId>extenderbased.square</artifactId> |
| 34 | <version>1.0.0</version> |
| 35 | <dependencies> |
| 36 | <dependency> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 37 | <groupId>org.apache.felix.example</groupId> |
| 38 | <artifactId>extenderbased.host</artifactId> |
| 39 | <version>1.0.0</version> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 47 | <version>1.4.0</version> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 48 | <extensions>true</extensions> |
| 49 | <configuration> |
| 50 | <instructions> |
| 51 | <Extension-Name>Square</Extension-Name> |
| 52 | <Extension-Icon>org/apache/felix/example/extenderbased/square/square.png</Extension-Icon> |
| 53 | <Extension-Class>org.apache.felix.example.extenderbased.square.Square</Extension-Class> |
| 54 | <Private-Package>org.apache.felix.example.extenderbased.square.*</Private-Package> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 55 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 56 | </instructions> |
| 57 | </configuration> |
| 58 | </plugin> |
Richard S. Hall | 0db8887 | 2012-03-07 16:24:47 +0000 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-compiler-plugin</artifactId> |
| 62 | <configuration> |
| 63 | <source>1.5</source> |
| 64 | <target>1.5</target> |
| 65 | </configuration> |
| 66 | </plugin> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 67 | </plugins> |
| 68 | </build> |
Richard S. Hall | 46754b5 | 2007-07-16 18:36:11 +0000 | [diff] [blame] | 69 | </project> |