Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix-parent</artifactId> |
Carsten Ziegeler | 01c2f1e | 2013-12-13 01:14:58 +0000 | [diff] [blame] | 25 | <version>2.1</version> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 26 | <relativePath>../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>org.apache.felix.coordinator</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <name>Apache Felix Coordinator Service</name> |
| 33 | <description> |
| 34 | Implementation of the OSGi Coordinator Service Specification 1.0 |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 35 | </description> |
| 36 | <version>0.0.1-SNAPSHOT</version> |
| 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <artifactId>maven-compiler-plugin</artifactId> |
| 42 | <configuration> |
| 43 | <source>5</source> |
Felix Meschberger | d30f66b | 2010-10-27 06:52:59 +0000 | [diff] [blame] | 44 | <target>jsr14</target> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 45 | </configuration> |
| 46 | </plugin> |
| 47 | <plugin> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>maven-bundle-plugin</artifactId> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 50 | <extensions>true</extensions> |
| 51 | <configuration> |
| 52 | <instructions> |
| 53 | <Bundle-Category>osgi</Bundle-Category> |
| 54 | <Bundle-SymbolicName> |
| 55 | ${artifactId} |
| 56 | </Bundle-SymbolicName> |
| 57 | <Bundle-DocURL> |
| 58 | http://felix.apache.org/site/apache-felix-coordination-service.html |
| 59 | </Bundle-DocURL> |
Carsten Ziegeler | f891d8f | 2013-12-30 10:39:01 +0000 | [diff] [blame^] | 60 | <DynamicImport-Package> |
| 61 | org.osgi.service.log;version="[1.3,2)" |
| 62 | </DynamicImport-Package> |
| 63 | <Import-Package> |
| 64 | <!-- |
| 65 | Optional import to back the dynamic import on org.osgi.service.log |
| 66 | --> |
| 67 | org.osgi.service.log;version="[1.3,2)";resolution:=optional, |
| 68 | * |
| 69 | </Import-Package> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 70 | <Export-Package> |
Carsten Ziegeler | 01c2f1e | 2013-12-13 01:14:58 +0000 | [diff] [blame] | 71 | org.osgi.service.coordinator |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 72 | </Export-Package> |
| 73 | <Private-Package> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 74 | org.apache.felix.coordinator.impl.* |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 75 | </Private-Package> |
| 76 | <Bundle-Activator> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 77 | org.apache.felix.coordinator.impl.Activator |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 78 | </Bundle-Activator> |
| 79 | </instructions> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
| 84 | |
| 85 | <dependencies> |
| 86 | <dependency> |
| 87 | <groupId>org.osgi</groupId> |
| 88 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | 02d8d9a | 2013-12-12 23:50:25 +0000 | [diff] [blame] | 89 | <version>4.3.0</version> |
Carsten Ziegeler | f891d8f | 2013-12-30 10:39:01 +0000 | [diff] [blame^] | 90 | <scope>provided</scope> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.osgi</groupId> |
Carsten Ziegeler | f891d8f | 2013-12-30 10:39:01 +0000 | [diff] [blame^] | 94 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | 02d8d9a | 2013-12-12 23:50:25 +0000 | [diff] [blame] | 95 | <version>5.0.0</version> |
Carsten Ziegeler | f891d8f | 2013-12-30 10:39:01 +0000 | [diff] [blame^] | 96 | <scope>provided</scope> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 97 | </dependency> |
| 98 | </dependencies> |
| 99 | </project> |