blob: bd798c208c1d88102249a1099b3f69144585a825 [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 Ziegeler01c2f1e2013-12-13 01:14:58 +000025 <version>2.1</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>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>5</source>
Felix Meschbergerd30f66b2010-10-27 06:52:59 +000050 <target>jsr14</target>
Felix Meschberger9e600592010-10-10 21:14:10 +000051 </configuration>
52 </plugin>
53 <plugin>
Felix Meschberger9e600592010-10-10 21:14:10 +000054 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger9e600592010-10-10 21:14:10 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Category>osgi</Bundle-Category>
60 <Bundle-SymbolicName>
61 ${artifactId}
62 </Bundle-SymbolicName>
63 <Bundle-DocURL>
64 http://felix.apache.org/site/apache-felix-coordination-service.html
65 </Bundle-DocURL>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000066 <DynamicImport-Package>
67 org.osgi.service.log;version="[1.3,2)"
68 </DynamicImport-Package>
69 <Import-Package>
70 <!--
71 Optional import to back the dynamic import on org.osgi.service.log
72 -->
73 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
74 *
75 </Import-Package>
Felix Meschberger9e600592010-10-10 21:14:10 +000076 <Export-Package>
Carsten Ziegeler01c2f1e2013-12-13 01:14:58 +000077 org.osgi.service.coordinator
Felix Meschberger9e600592010-10-10 21:14:10 +000078 </Export-Package>
79 <Private-Package>
Felix Meschberger9e553562011-02-03 22:35:13 +000080 org.apache.felix.coordinator.impl.*
Felix Meschberger9e600592010-10-10 21:14:10 +000081 </Private-Package>
82 <Bundle-Activator>
Felix Meschberger9e553562011-02-03 22:35:13 +000083 org.apache.felix.coordinator.impl.Activator
Felix Meschberger9e600592010-10-10 21:14:10 +000084 </Bundle-Activator>
85 </instructions>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler02d8d9a2013-12-12 23:50:25 +000095 <version>4.3.0</version>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +000096 <scope>provided</scope>
Felix Meschberger9e600592010-10-10 21:14:10 +000097 </dependency>
98 <dependency>
99 <groupId>org.osgi</groupId>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +0000100 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler02d8d9a2013-12-12 23:50:25 +0000101 <version>5.0.0</version>
Carsten Ziegelerf891d8f2013-12-30 10:39:01 +0000102 <scope>provided</scope>
Felix Meschberger9e600592010-10-10 21:14:10 +0000103 </dependency>
104 </dependencies>
Felix Meschberger9e600592010-10-10 21:14:10 +0000105</project>