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> |
| 48 | <artifactId>maven-javadoc-plugin</artifactId> |
| 49 | <configuration> |
| 50 | <tags> |
| 51 | <tag> |
| 52 | <name>ThreadSafe</name> |
| 53 | <placement>a</placement> |
| 54 | <head>ThreadSafe</head> |
| 55 | </tag> |
| 56 | <tag> |
| 57 | <name>Provisional</name> |
| 58 | <placement>a</placement> |
| 59 | <head> |
| 60 | This is provisional API derived from OSGi R4.3 DRAFT 2 specification. This API is provided for testing purposes and gaining experience. As such this API is subject to change and will be removed once the OSGi R4.3 specification is finalized. |
| 61 | </head> |
| 62 | </tag> |
| 63 | </tags> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>maven-bundle-plugin</artifactId> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 69 | <extensions>true</extensions> |
| 70 | <configuration> |
| 71 | <instructions> |
| 72 | <Bundle-Category>osgi</Bundle-Category> |
| 73 | <Bundle-SymbolicName> |
| 74 | ${artifactId} |
| 75 | </Bundle-SymbolicName> |
| 76 | <Bundle-DocURL> |
| 77 | http://felix.apache.org/site/apache-felix-coordination-service.html |
| 78 | </Bundle-DocURL> |
| 79 | <Export-Package> |
Carsten Ziegeler | 01c2f1e | 2013-12-13 01:14:58 +0000 | [diff] [blame] | 80 | org.osgi.service.coordinator |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 81 | </Export-Package> |
| 82 | <Private-Package> |
Carsten Ziegeler | 01c2f1e | 2013-12-13 01:14:58 +0000 | [diff] [blame] | 83 | org.apache.felix.jmx.service.coordinator, |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 84 | org.apache.felix.coordinator.impl.* |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 85 | </Private-Package> |
| 86 | <Bundle-Activator> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 87 | org.apache.felix.coordinator.impl.Activator |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 88 | </Bundle-Activator> |
| 89 | </instructions> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </build> |
| 94 | |
| 95 | <dependencies> |
| 96 | <dependency> |
| 97 | <groupId>org.osgi</groupId> |
| 98 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | 02d8d9a | 2013-12-12 23:50:25 +0000 | [diff] [blame] | 99 | <version>4.3.0</version> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.osgi</groupId> |
| 103 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | 02d8d9a | 2013-12-12 23:50:25 +0000 | [diff] [blame] | 104 | <version>4.3.0</version> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.osgi</groupId> |
| 108 | <artifactId>org.osgi.enterprise</artifactId> |
Carsten Ziegeler | 02d8d9a | 2013-12-12 23:50:25 +0000 | [diff] [blame] | 109 | <version>5.0.0</version> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 110 | </dependency> |
| 111 | </dependencies> |
| 112 | </project> |