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 | --> |
Richard S. Hall | 57376bf | 2012-03-06 19:19:04 +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"> |
| 20 | |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 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 | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <packaging>bundle</packaging> |
| 30 | <name>Apache Felix Circle Service</name> |
| 31 | <description>A simple service for drawing circles.</description> |
| 32 | <groupId>org.apache.felix.example</groupId> |
| 33 | <artifactId>servicebased.circle</artifactId> |
| 34 | <version>1.0.0</version> |
| 35 | <dependencies> |
| 36 | <dependency> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 37 | <groupId>org.apache.felix.example</groupId> |
| 38 | <artifactId>servicebased.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 | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 48 | <extensions>true</extensions> |
| 49 | <configuration> |
| 50 | <instructions> |
| 51 | <Private-Package>org.apache.felix.example.servicebased.circle.*</Private-Package> |
| 52 | <Bundle-Activator>org.apache.felix.example.servicebased.circle.Activator</Bundle-Activator> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 53 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 54 | </instructions> |
| 55 | </configuration> |
| 56 | </plugin> |
Richard S. Hall | 57376bf | 2012-03-06 19:19:04 +0000 | [diff] [blame] | 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-compiler-plugin</artifactId> |
| 60 | <configuration> |
| 61 | <source>1.5</source> |
| 62 | <target>1.5</target> |
| 63 | </configuration> |
| 64 | </plugin> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 65 | </plugins> |
| 66 | </build> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 67 | </project> |