blob: cde5e433babac58f3fbd928d7e8cdb2005fe2cc5 [file] [log] [blame]
Felix Meschberger9e600592010-10-10 21:14:10 +00001<?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 Ziegelerca17a762015-08-01 09:42:47 +000025 <version>3</version>
Felix Meschberger9e600592010-10-10 21:14:10 +000026 <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 Meschberger9e600592010-10-10 21:14:10 +000035 </description>
Carsten Ziegeler44039b22014-01-15 15:28:46 +000036 <version>1.0.1-SNAPSHOT</version>
Felix Meschberger9e600592010-10-10 21:14:10 +000037
Carsten Ziegelere6277be2014-01-15 15:27:56 +000038 <scm>
Carsten Ziegeler44039b22014-01-15 15:28:46 +000039 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/coordinator</connection>
40 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/coordinator</developerConnection>
41 <url>http://svn.apache.org/viewvc/felix/trunk/coordinator</url>
Carsten Ziegelere6277be2014-01-15 15:27:56 +000042 </scm>
43
Felix Meschberger9e600592010-10-10 21:14:10 +000044 <build>
45 <plugins>
46 <plugin>
Felix Meschberger9e600592010-10-10 21:14:10 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger9e600592010-10-10 21:14:10 +000049 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-Category>osgi</Bundle-Category>
53 <Bundle-SymbolicName>
54 ${artifactId}
55 </Bundle-SymbolicName>
56 <Bundle-DocURL>
57 http://felix.apache.org/site/apache-felix-coordination-service.html
58 </Bundle-DocURL>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000059 <DynamicImport-Package>
60 org.osgi.service.log;version="[1.3,2)"
61 </DynamicImport-Package>
62 <Import-Package>
63 <!--
64 Optional import to back the dynamic import on org.osgi.service.log
65 -->
66 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
67 *
68 </Import-Package>
Felix Meschberger9e600592010-10-10 21:14:10 +000069 <Export-Package>
Carsten Ziegeler01c2f1e2013-12-13 01:14:58 +000070 org.osgi.service.coordinator
Felix Meschberger9e600592010-10-10 21:14:10 +000071 </Export-Package>
72 <Private-Package>
Felix Meschberger9e553562011-02-03 22:35:13 +000073 org.apache.felix.coordinator.impl.*
Felix Meschberger9e600592010-10-10 21:14:10 +000074 </Private-Package>
75 <Bundle-Activator>
Felix Meschberger9e553562011-02-03 22:35:13 +000076 org.apache.felix.coordinator.impl.Activator
Felix Meschberger9e600592010-10-10 21:14:10 +000077 </Bundle-Activator>
78 </instructions>
79 </configuration>
80 </plugin>
81 </plugins>
82 </build>
83
84 <dependencies>
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler02d8d9a2013-12-12 23:50:25 +000088 <version>4.3.0</version>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000089 <scope>provided</scope>
Felix Meschberger9e600592010-10-10 21:14:10 +000090 </dependency>
91 <dependency>
92 <groupId>org.osgi</groupId>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000093 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler02d8d9a2013-12-12 23:50:25 +000094 <version>5.0.0</version>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000095 <scope>provided</scope>
Felix Meschberger9e600592010-10-10 21:14:10 +000096 </dependency>
97 </dependencies>
Felix Meschberger9e600592010-10-10 21:14:10 +000098</project>