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> |
| 25 | <version>1.2.0</version> |
| 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 |
| 35 | (Based on OSGi R 4.3 Draft 2 (31 Aug. 2010)) |
| 36 | </description> |
| 37 | <version>0.0.1-SNAPSHOT</version> |
| 38 | |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <artifactId>maven-compiler-plugin</artifactId> |
| 43 | <configuration> |
| 44 | <source>5</source> |
Felix Meschberger | d30f66b | 2010-10-27 06:52:59 +0000 | [diff] [blame] | 45 | <target>jsr14</target> |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 46 | </configuration> |
| 47 | </plugin> |
| 48 | <plugin> |
| 49 | <artifactId>maven-javadoc-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <tags> |
| 52 | <tag> |
| 53 | <name>ThreadSafe</name> |
| 54 | <placement>a</placement> |
| 55 | <head>ThreadSafe</head> |
| 56 | </tag> |
| 57 | <tag> |
| 58 | <name>Provisional</name> |
| 59 | <placement>a</placement> |
| 60 | <head> |
| 61 | 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. |
| 62 | </head> |
| 63 | </tag> |
| 64 | </tags> |
| 65 | </configuration> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-bundle-plugin</artifactId> |
| 70 | <version>2.0.1</version> |
| 71 | <extensions>true</extensions> |
| 72 | <configuration> |
| 73 | <instructions> |
| 74 | <Bundle-Category>osgi</Bundle-Category> |
| 75 | <Bundle-SymbolicName> |
| 76 | ${artifactId} |
| 77 | </Bundle-SymbolicName> |
| 78 | <Bundle-DocURL> |
| 79 | http://felix.apache.org/site/apache-felix-coordination-service.html |
| 80 | </Bundle-DocURL> |
| 81 | <Export-Package> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 82 | org.apache.felix.jmx.service.coordinator; |
| 83 | org.apache.felix.service.coordinator; |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 84 | version=1.0; |
| 85 | mandatory:="status"; status="provisional" |
| 86 | </Export-Package> |
| 87 | <Private-Package> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 88 | org.apache.felix.coordinator.impl.* |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 89 | </Private-Package> |
| 90 | <Bundle-Activator> |
Felix Meschberger | 9e55356 | 2011-02-03 22:35:13 +0000 | [diff] [blame] | 91 | org.apache.felix.coordinator.impl.Activator |
Felix Meschberger | 9e60059 | 2010-10-10 21:14:10 +0000 | [diff] [blame] | 92 | </Bundle-Activator> |
| 93 | </instructions> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
| 98 | |
| 99 | <dependencies> |
| 100 | <dependency> |
| 101 | <groupId>org.osgi</groupId> |
| 102 | <artifactId>org.osgi.core</artifactId> |
| 103 | <version>4.2.0</version> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.osgi</groupId> |
| 107 | <artifactId>org.osgi.compendium</artifactId> |
| 108 | <version>4.2.0</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.osgi</groupId> |
| 112 | <artifactId>org.osgi.enterprise</artifactId> |
| 113 | <version>4.2.0</version> |
| 114 | </dependency> |
| 115 | </dependencies> |
| 116 | </project> |