blob: 0d15158e4c1abeedb44e23a61aa0227338ee62e3 [file] [log] [blame]
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +00001<?xml version="1.0" encoding="UTF-8"?>
Carsten Ziegeler3a66ebc2007-07-11 10:46:36 +00002<!--
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-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000020<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">
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger0ad13792009-08-20 10:34:17 +000024 <artifactId>felix-parent</artifactId>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +000025 <version>2.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000026 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000027 </parent>
28
Felix Meschbergerfdb360f2007-04-11 18:51:16 +000029 <artifactId>org.apache.felix.configadmin</artifactId>
Felix Meschberger87b4e0f2013-09-25 14:17:32 +000030 <version>1.8.1-SNAPSHOT</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000031 <packaging>bundle</packaging>
32
33 <name>Apache Felix Configuration Admin Service</name>
34 <description>
Felix Meschberger0770cad2012-06-11 12:36:52 +000035 Implementation of the OSGi Configuration Admin Service Specification 1.5
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000036 </description>
37
Carsten Ziegeler8c4700f2010-08-27 07:37:31 +000038 <scm>
Felix Meschberger87b4e0f2013-09-25 14:17:32 +000039 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/configadmin</connection>
40 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/configadmin</developerConnection>
41 <url>http://svn.apache.org/repos/asf/felix/configadmin</url>
Carsten Ziegeler8c4700f2010-08-27 07:37:31 +000042 </scm>
43
Felix Meschbergerf2641a22010-08-25 08:45:50 +000044 <!--
45 A Note on Testing
46 =================
47
48 This project contains two kinds of tests: regular unit tests running
49 in the test phase and integration tests based on PAX Exam running
50 in the integration-test phase.
51
52 Basically the complete project is build using Java 1.3 source and target
53 compatibility (as inherited from the parent pom). The exception are the
54 unit tests in the "integration" packages. These have to be compiled with
55 Java 5 source and target compatibility because the employ annotations
56 and generics.
57
58 For running the integration tests from the console using Maven nothing
59 special has to be done as the tests run automatically. To run the tests
60 in your IDE, the project has to be built to the "package" phase with
61 the profile "ide" enabled:
62
63 $ mvn -Pide clean package
64
65 This creates the scr.jar file in the target folder, which is used by
66 the integration tests when run from the IDE. Alternatively the
67 "project.bundle.file" system property may be set to the bundle JAR
68 in the IDE launcher.
69 -->
70 <properties>
71 <bundle.build.name>
72 ${basedir}/target
73 </bundle.build.name>
74 <bundle.file.name>
75 ${bundle.build.name}/${project.build.finalName}.jar
76 </bundle.file.name>
Felix Meschbergerf2641a22010-08-25 08:45:50 +000077
Felix Meschberger0770cad2012-06-11 12:36:52 +000078 <felix.build.source>5</felix.build.source>
79 <felix.build.target>5</felix.build.target>
80 <felix.java.signature.artifactId>java15</felix.java.signature.artifactId>
81 </properties>
Felix Meschbergerf2641a22010-08-25 08:45:50 +000082
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000083 <dependencies>
Felix Meschberger63e7ab12012-07-02 14:10:43 +000084
85 <!--
86 Depend on latest version to make use of generics. Still we
87 make sure to only require Framework API 1.5 (OSGi Core R4.2)
88 -->
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000089 <dependency>
Felix Meschberger6f13aa22009-09-17 13:11:21 +000090 <groupId>org.osgi</groupId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000091 <artifactId>org.osgi.core</artifactId>
Felix Meschberger63e7ab12012-07-02 14:10:43 +000092 <version>5.0.0</version>
Felix Meschbergera37988a2010-03-06 18:04:38 +000093 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000094 </dependency>
Felix Meschberger70f0abd2012-06-19 06:18:05 +000095
96 <!--
97 Configuration Admin and other API from latest enterprise
98 which provides Config Admin 1.5 API
99 -->
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000100 <dependency>
Felix Meschberger6f13aa22009-09-17 13:11:21 +0000101 <groupId>org.osgi</groupId>
Felix Meschberger70f0abd2012-06-19 06:18:05 +0000102 <artifactId>org.osgi.enterprise</artifactId>
103 <version>5.0.0</version>
Felix Meschbergera37988a2010-03-06 18:04:38 +0000104 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000105 </dependency>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000106
107 <!-- BND export annotations -->
108 <dependency>
109 <groupId>biz.aQute</groupId>
110 <artifactId>bndlib</artifactId>
111 <version>1.50.0</version>
112 <scope>provided</scope>
113 </dependency>
114
Felix Meschberger819d0b72009-08-14 15:35:27 +0000115 <!-- Integration Testing with Pax Exam -->
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
119 <version>4.6</version>
Felix Meschbergerb93eea92010-03-06 17:56:13 +0000120 <scope>test</scope>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000121 </dependency>
122 <dependency>
123 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodet34730932012-12-14 16:40:08 +0000124 <artifactId>pax-exam-junit4</artifactId>
125 <version>2.6.0</version>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodet34730932012-12-14 16:40:08 +0000130 <artifactId>pax-exam-container-native</artifactId>
131 <version>2.6.0</version>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000132 <scope>test</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodet34730932012-12-14 16:40:08 +0000136 <artifactId>pax-exam-link-mvn</artifactId>
137 <version>2.6.0</version>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000138 <scope>test</scope>
139 </dependency>
140 <dependency>
Guillaume Nodet34730932012-12-14 16:40:08 +0000141 <groupId>org.ops4j.pax.url</groupId>
142 <artifactId>pax-url-aether</artifactId>
143 <version>1.5.0</version>
144 <scope>test</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.ops4j.pax.tinybundles</groupId>
148 <artifactId>tinybundles</artifactId>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000149 <version>1.0.0</version>
150 <scope>test</scope>
151 </dependency>
Guillaume Nodet34730932012-12-14 16:40:08 +0000152 <dependency>
153 <groupId>org.apache.geronimo.specs</groupId>
154 <artifactId>geronimo-atinject_1.0_spec</artifactId>
155 <version>1.0</version>
156 <scope>test</scope>
157 </dependency>
158 <dependency>
159 <groupId>org.slf4j</groupId>
160 <artifactId>slf4j-simple</artifactId>
161 <version>1.7.1</version>
162 <scope>test</scope>
163 </dependency>
164 <dependency>
165 <groupId>org.apache.felix</groupId>
166 <artifactId>org.apache.felix.framework</artifactId>
167 <version>4.0.3</version>
168 <scope>test</scope>
169 </dependency>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000170 </dependencies>
171
172 <build>
173 <plugins>
174 <plugin>
175 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +0000176 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger92545822012-06-01 22:22:44 +0000177 <version>2.3.7</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000178 <extensions>true</extensions>
179 <configuration>
180 <instructions>
181 <Bundle-Category>osgi</Bundle-Category>
Felix Meschberger1af21822007-09-04 13:35:05 +0000182 <Bundle-SymbolicName>
Felix Meschbergercdb12bf2011-11-03 23:42:50 +0000183 ${project.artifactId}
Felix Meschberger1af21822007-09-04 13:35:05 +0000184 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000185 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergerb3c6ac92011-02-04 06:23:47 +0000186 <Bundle-DocURL>
187 http://felix.apache.org/site/apache-felix-config-admin.html
188 </Bundle-DocURL>
Felix Meschberger80a9d5f2010-09-08 07:39:13 +0000189 <Bundle-Activator>
190 org.apache.felix.cm.impl.ConfigurationManager
191 </Bundle-Activator>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000192 <Export-Package>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000193 <!-- just list, version from package-info classes -->
Felix Meschberger432e3872008-03-07 14:58:57 +0000194 org.apache.felix.cm;
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000195 org.apache.felix.cm.file,
Felix Meschberger73266ae2012-07-03 09:40:45 +0000196 org.osgi.service.cm;provide:=true;version=1.5
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000197 </Export-Package>
Felix Meschberger0770cad2012-06-11 12:36:52 +0000198 <Import-Package>
199 org.osgi.service.cm;version="[1.5,1.6)",
Felix Meschberger63e7ab12012-07-02 14:10:43 +0000200 org.osgi.framework;version="[1.4,2)",
Guillaume Nodeta58c8f72013-11-20 09:58:32 +0000201 org.osgi.service.log;resolution:=optional;version="1.3",
Felix Meschberger0770cad2012-06-11 12:36:52 +0000202 *
203 </Import-Package>
Felix Meschberger85b355d2007-08-31 07:17:38 +0000204 <DynamicImport-Package>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000205 <!-- overwrite version from compendium bundle -->
Felix Meschberger80a9d5f2010-09-08 07:39:13 +0000206 org.osgi.service.log;version="1.3"
Felix Meschberger85b355d2007-08-31 07:17:38 +0000207 </DynamicImport-Package>
Guillaume Nodetf3870bb2011-03-18 13:14:01 +0000208 <Export-Service>
209 org.osgi.service.cm.ConfigurationAdmin;
Felix Meschberger0770cad2012-06-11 12:36:52 +0000210 service.description="Configuration Admin Service Specification 1.5 Implementation";
Guillaume Nodetf3870bb2011-03-18 13:14:01 +0000211 service.pid="org.osgi.service.cm.ConfigurationAdmin";
212 service.vendor="Apache Software Foundation",
213 org.apache.felix.cm.PersistenceManager;
214 service.description="Platform Filesystem Persistence Manager";
215 service.pid="org.apache.felix.cm.file.FilePersistenceManager";
216 service.vendor="Apache Software Foundation"
217 </Export-Service>
218 <Import-Service>
219 org.osgi.service.log.LogService;availability:=optional;multiple:=false
220 </Import-Service>
Felix Meschberger73266ae2012-07-03 09:40:45 +0000221 <Embed-Dependency>
222 org.osgi.core;inline=org/osgi/util/tracker/ServiceTracker*|org/osgi/util/tracker/AbstractTracked.class
223 </Embed-Dependency>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000224 </instructions>
225 </configuration>
226 </plugin>
Felix Meschberger4a48e252012-01-09 08:17:55 +0000227 <plugin>
228 <groupId>org.codehaus.mojo</groupId>
229 <artifactId>animal-sniffer-maven-plugin</artifactId>
230 <version>1.7</version>
231 <configuration>
232 <signature>
233 <groupId>org.codehaus.mojo.signature</groupId>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000234 <artifactId>java15</artifactId>
Felix Meschberger4a48e252012-01-09 08:17:55 +0000235 <version>1.0</version>
236 </signature>
237 </configuration>
238 <executions>
239 <execution>
240 <phase>test</phase>
241 <goals>
242 <goal>check</goal>
243 </goals>
244 </execution>
245 </executions>
246 </plugin>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000247 <plugin>
248 <artifactId>maven-compiler-plugin</artifactId>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000249 <configuration>
Felix Meschbergerabb0bc22012-05-30 11:07:49 +0000250 <source>1.5</source>
251 <target>1.5</target>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000252 </configuration>
253 </plugin>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000254 <!--
255 Exclude Integration tests in (default) unit tests and
256 conversely enable integration tests for integration testing
257 only. Helper classes are completely excluded from testing.
258 -->
259 <plugin>
260 <artifactId>maven-surefire-plugin</artifactId>
261 <executions>
262 <execution>
263 <id>surefire-it</id>
264 <phase>integration-test</phase>
265 <goals>
266 <goal>test</goal>
267 </goals>
268 <configuration>
Felix Meschbergerf2641a22010-08-25 08:45:50 +0000269 <systemProperties>
270 <property>
271 <name>project.bundle.file</name>
272 <value>${bundle.file.name}</value>
273 </property>
274 </systemProperties>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000275 <excludes>
276 <exclude>**/cm/*</exclude>
277 <exclude>**/cm/file/*</exclude>
278 <exclude>**/cm/impl/**</exclude>
279 </excludes>
280 <includes>
281 <include>**/integration/*</include>
282 </includes>
283 </configuration>
284 </execution>
285 </executions>
286 <configuration>
287 <excludes>
288 <exclude>**/integration/**</exclude>
289 </excludes>
290 </configuration>
291 </plugin>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000292 </plugins>
293 </build>
Felix Meschberger819d0b72009-08-14 15:35:27 +0000294
Felix Meschbergerf2641a22010-08-25 08:45:50 +0000295 <profiles>
296 <!--
297 copy the package such that IDEs may easily use it without
298 setting the system property
299 -->
300 <profile>
301 <id>ide</id>
302 <build>
303 <plugins>
304 <plugin>
305 <artifactId>maven-antrun-plugin</artifactId>
306 <version>1.3</version>
307 <executions>
308 <execution>
309 <id>cm-file-create</id>
310 <phase>package</phase>
311 <goals>
312 <goal>run</goal>
313 </goals>
314 <configuration>
315 <tasks>
316 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/configadmin.jar" />
317 </tasks>
318 </configuration>
319 </execution>
320 </executions>
321 </plugin>
322 </plugins>
323 </build>
324 </profile>
325 </profiles>
326
Felix Meschberger819d0b72009-08-14 15:35:27 +0000327 <!-- repositories for Pax Exam and BND tool -->
328 <repositories>
329 <repository>
330 <id>ops4j</id>
331 <name>ops4j</name>
332 <url>http://repository.ops4j.org/maven2</url>
333 <snapshots>
334 <enabled>false</enabled>
335 </snapshots>
336 </repository>
337 <repository>
338 <id>aqute</id>
339 <name>aqute</name>
340 <url>http://www.aqute.biz/repo</url>
341 <snapshots>
342 <enabled>false</enabled>
343 </snapshots>
344 </repository>
345 </repositories>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000346</project>