blob: 7acb84ab72955aff2d91ab506bf9826ade82482f [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 Meschbergerfb05f002009-08-20 10:34:17 +000024 <artifactId>felix-parent</artifactId>
Felix Meschberger1db7be82012-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 Meschberger605536a2012-10-19 20:36:09 +000030 <version>1.6.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 Meschbergerc6d6fc22012-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 Ziegeler69ccae32010-08-27 07:37:31 +000038 <scm>
Felix Meschberger605536a2012-10-19 20:36:09 +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 Ziegeler69ccae32010-08-27 07:37:31 +000042 </scm>
43
Felix Meschberger3aad57c2010-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 Meschberger3aad57c2010-08-25 08:45:50 +000077
Felix Meschbergerc6d6fc22012-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 Meschberger3aad57c2010-08-25 08:45:50 +000082
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000083 <dependencies>
Felix Meschberger29c63262012-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 Meschberger806d25b2009-09-17 13:11:21 +000090 <groupId>org.osgi</groupId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000091 <artifactId>org.osgi.core</artifactId>
Felix Meschberger29c63262012-07-02 14:10:43 +000092 <version>5.0.0</version>
Felix Meschberger00d0cdf2010-03-06 18:04:38 +000093 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000094 </dependency>
Felix Meschberger1cc8aad2012-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 Meschberger806d25b2009-09-17 13:11:21 +0000101 <groupId>org.osgi</groupId>
Felix Meschberger1cc8aad2012-06-19 06:18:05 +0000102 <artifactId>org.osgi.enterprise</artifactId>
103 <version>5.0.0</version>
Felix Meschberger00d0cdf2010-03-06 18:04:38 +0000104 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000105 </dependency>
Felix Meschberger1db7be82012-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 Meschberger3121d7a2009-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 Meschberger8ca8aea2010-03-06 17:56:13 +0000120 <scope>test</scope>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000121 </dependency>
122 <dependency>
123 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodetd853a452012-12-14 16:40:08 +0000124 <artifactId>pax-exam-junit4</artifactId>
125 <version>2.6.0</version>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodetd853a452012-12-14 16:40:08 +0000130 <artifactId>pax-exam-container-native</artifactId>
131 <version>2.6.0</version>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000132 <scope>test</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.ops4j.pax.exam</groupId>
Guillaume Nodetd853a452012-12-14 16:40:08 +0000136 <artifactId>pax-exam-link-mvn</artifactId>
137 <version>2.6.0</version>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000138 <scope>test</scope>
139 </dependency>
140 <dependency>
Guillaume Nodetd853a452012-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 Meschberger3121d7a2009-08-14 15:35:27 +0000149 <version>1.0.0</version>
150 <scope>test</scope>
151 </dependency>
Guillaume Nodetd853a452012-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 Meschberger9e05dfd2012-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 Meschberger70141452011-11-03 23:42:50 +0000183 ${project.artifactId}
Felix Meschberger1af21822007-09-04 13:35:05 +0000184 </Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +0000185 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger8309e522011-02-04 06:23:47 +0000186 <Bundle-DocURL>
187 http://felix.apache.org/site/apache-felix-config-admin.html
188 </Bundle-DocURL>
Felix Meschbergerd9305cb2010-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 Meschberger1db7be82012-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 Meschberger1db7be82012-05-30 11:07:49 +0000195 org.apache.felix.cm.file,
Felix Meschberger01834da2012-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 Meschbergerc6d6fc22012-06-11 12:36:52 +0000198 <Import-Package>
199 org.osgi.service.cm;version="[1.5,1.6)",
Felix Meschberger29c63262012-07-02 14:10:43 +0000200 org.osgi.framework;version="[1.4,2)",
Felix Meschbergerc6d6fc22012-06-11 12:36:52 +0000201 *
202 </Import-Package>
Felix Meschberger85b355d2007-08-31 07:17:38 +0000203 <DynamicImport-Package>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000204 <!-- overwrite version from compendium bundle -->
Felix Meschbergerd9305cb2010-09-08 07:39:13 +0000205 org.osgi.service.log;version="1.3"
Felix Meschberger85b355d2007-08-31 07:17:38 +0000206 </DynamicImport-Package>
Guillaume Nodetf4cc54a2011-03-18 13:14:01 +0000207 <Export-Service>
208 org.osgi.service.cm.ConfigurationAdmin;
Felix Meschbergerc6d6fc22012-06-11 12:36:52 +0000209 service.description="Configuration Admin Service Specification 1.5 Implementation";
Guillaume Nodetf4cc54a2011-03-18 13:14:01 +0000210 service.pid="org.osgi.service.cm.ConfigurationAdmin";
211 service.vendor="Apache Software Foundation",
212 org.apache.felix.cm.PersistenceManager;
213 service.description="Platform Filesystem Persistence Manager";
214 service.pid="org.apache.felix.cm.file.FilePersistenceManager";
215 service.vendor="Apache Software Foundation"
216 </Export-Service>
217 <Import-Service>
218 org.osgi.service.log.LogService;availability:=optional;multiple:=false
219 </Import-Service>
Felix Meschberger01834da2012-07-03 09:40:45 +0000220 <Embed-Dependency>
221 org.osgi.core;inline=org/osgi/util/tracker/ServiceTracker*|org/osgi/util/tracker/AbstractTracked.class
222 </Embed-Dependency>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000223 </instructions>
224 </configuration>
225 </plugin>
Felix Meschberger458b1a92012-01-09 08:17:55 +0000226 <plugin>
227 <groupId>org.codehaus.mojo</groupId>
228 <artifactId>animal-sniffer-maven-plugin</artifactId>
229 <version>1.7</version>
230 <configuration>
231 <signature>
232 <groupId>org.codehaus.mojo.signature</groupId>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000233 <artifactId>java15</artifactId>
Felix Meschberger458b1a92012-01-09 08:17:55 +0000234 <version>1.0</version>
235 </signature>
236 </configuration>
237 <executions>
238 <execution>
239 <phase>test</phase>
240 <goals>
241 <goal>check</goal>
242 </goals>
243 </execution>
244 </executions>
245 </plugin>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000246 <plugin>
247 <artifactId>maven-compiler-plugin</artifactId>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000248 <configuration>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000249 <source>1.5</source>
250 <target>1.5</target>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000251 </configuration>
252 </plugin>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000253 <!--
254 Exclude Integration tests in (default) unit tests and
255 conversely enable integration tests for integration testing
256 only. Helper classes are completely excluded from testing.
257 -->
258 <plugin>
259 <artifactId>maven-surefire-plugin</artifactId>
260 <executions>
261 <execution>
262 <id>surefire-it</id>
263 <phase>integration-test</phase>
264 <goals>
265 <goal>test</goal>
266 </goals>
267 <configuration>
Felix Meschberger3aad57c2010-08-25 08:45:50 +0000268 <systemProperties>
269 <property>
270 <name>project.bundle.file</name>
271 <value>${bundle.file.name}</value>
272 </property>
273 </systemProperties>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000274 <excludes>
275 <exclude>**/cm/*</exclude>
276 <exclude>**/cm/file/*</exclude>
277 <exclude>**/cm/impl/**</exclude>
278 </excludes>
279 <includes>
280 <include>**/integration/*</include>
281 </includes>
282 </configuration>
283 </execution>
284 </executions>
285 <configuration>
286 <excludes>
287 <exclude>**/integration/**</exclude>
288 </excludes>
289 </configuration>
290 </plugin>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000291 </plugins>
292 </build>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000293
Felix Meschberger3aad57c2010-08-25 08:45:50 +0000294 <profiles>
295 <!--
296 copy the package such that IDEs may easily use it without
297 setting the system property
298 -->
299 <profile>
300 <id>ide</id>
301 <build>
302 <plugins>
303 <plugin>
304 <artifactId>maven-antrun-plugin</artifactId>
305 <version>1.3</version>
306 <executions>
307 <execution>
308 <id>cm-file-create</id>
309 <phase>package</phase>
310 <goals>
311 <goal>run</goal>
312 </goals>
313 <configuration>
314 <tasks>
315 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/configadmin.jar" />
316 </tasks>
317 </configuration>
318 </execution>
319 </executions>
320 </plugin>
321 </plugins>
322 </build>
323 </profile>
324 </profiles>
325
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000326 <!-- repositories for Pax Exam and BND tool -->
327 <repositories>
328 <repository>
329 <id>ops4j</id>
330 <name>ops4j</name>
331 <url>http://repository.ops4j.org/maven2</url>
332 <snapshots>
333 <enabled>false</enabled>
334 </snapshots>
335 </repository>
336 <repository>
337 <id>aqute</id>
338 <name>aqute</name>
339 <url>http://www.aqute.biz/repo</url>
340 <snapshots>
341 <enabled>false</enabled>
342 </snapshots>
343 </repository>
344 </repositories>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000345</project>