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"> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +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 | 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 Service-Based Host</name> |
| 31 | <description>A simple application that embeds Felix and uses the service model for extensibility.</description> |
| 32 | <groupId>org.apache.felix.example</groupId> |
| 33 | <artifactId>servicebased.host</artifactId> |
| 34 | <version>1.0.0</version> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 04c231d | 2012-07-19 16:55:04 +0000 | [diff] [blame] | 38 | <artifactId>org.apache.felix.framework</artifactId> |
Richard S. Hall | 3c1c088 | 2012-03-13 17:32:01 +0000 | [diff] [blame] | 39 | <version>4.0.2</version> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 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> |
Richard S. Hall | ef4e770 | 2009-06-10 19:54:02 +0000 | [diff] [blame] | 51 | <_donotcopy>(CVS|.svn|config.properties)</_donotcopy> |
Richard S. Hall | 3c1c088 | 2012-03-13 17:32:01 +0000 | [diff] [blame] | 52 | <Main-Class>org.apache.felix.example.servicebased.host.launch.Application</Main-Class> |
Richard S. Hall | ef4e770 | 2009-06-10 19:54:02 +0000 | [diff] [blame] | 53 | <Import-Package>!android.*,!dalvik.*,org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.url,org.osgi.service.startlevel,org.osgi.util.tracker,*</Import-Package> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 54 | <Export-Package>org.apache.felix.example.servicebased.host.service.*</Export-Package> |
Richard S. Hall | ef4e770 | 2009-06-10 19:54:02 +0000 | [diff] [blame] | 55 | <Private-Package>org.apache.felix.example.servicebased.host.*</Private-Package> |
Richard S. Hall | 04c231d | 2012-07-19 16:55:04 +0000 | [diff] [blame] | 56 | <Embed-Dependency>*;artifactId=org.apache.felix.framework;inline=true</Embed-Dependency> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 57 | <Bundle-Activator>org.apache.felix.example.servicebased.host.Activator</Bundle-Activator> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 58 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 59 | </instructions> |
| 60 | </configuration> |
| 61 | </plugin> |
Richard S. Hall | 57376bf | 2012-03-06 19:19:04 +0000 | [diff] [blame] | 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-compiler-plugin</artifactId> |
| 65 | <configuration> |
Richard S. Hall | 3c1c088 | 2012-03-13 17:32:01 +0000 | [diff] [blame] | 66 | <source>1.6</source> |
| 67 | <target>1.6</target> |
Richard S. Hall | 57376bf | 2012-03-06 19:19:04 +0000 | [diff] [blame] | 68 | </configuration> |
| 69 | </plugin> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 70 | </plugins> |
| 71 | </build> |
Richard S. Hall | bad49dc | 2007-07-13 16:08:06 +0000 | [diff] [blame] | 72 | </project> |