blob: a8fd1d882c974382b53f704d11aef0df3c75f345 [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 Meschberger1d265592012-05-30 12:19:45 +000030 <version>1.4.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 Meschbergerfff99df2011-10-20 12:39:38 +000035 Implementation of the OSGi Configuration Admin Service Specification 1.4
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000036 </description>
37
Carsten Ziegeler69ccae32010-08-27 07:37:31 +000038 <scm>
Felix Meschberger1d265592012-05-30 12:19:45 +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>
77 </properties>
78
79
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000080 <dependencies>
81 <dependency>
Felix Meschberger806d25b2009-09-17 13:11:21 +000082 <groupId>org.osgi</groupId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000083 <artifactId>org.osgi.core</artifactId>
Felix Meschberger1db7be82012-05-30 11:07:49 +000084 <version>4.1.0</version>
Felix Meschberger00d0cdf2010-03-06 18:04:38 +000085 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000086 </dependency>
87 <dependency>
Felix Meschberger806d25b2009-09-17 13:11:21 +000088 <groupId>org.osgi</groupId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000089 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger1db7be82012-05-30 11:07:49 +000090 <version>4.3.0</version>
Felix Meschberger00d0cdf2010-03-06 18:04:38 +000091 <scope>provided</scope>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000092 </dependency>
Felix Meschberger1db7be82012-05-30 11:07:49 +000093
94 <!-- BND export annotations -->
95 <dependency>
96 <groupId>biz.aQute</groupId>
97 <artifactId>bndlib</artifactId>
98 <version>1.50.0</version>
99 <scope>provided</scope>
100 </dependency>
101
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000102 <!-- Integration Testing with Pax Exam -->
103 <dependency>
104 <groupId>junit</groupId>
105 <artifactId>junit</artifactId>
106 <version>4.6</version>
Felix Meschberger8ca8aea2010-03-06 17:56:13 +0000107 <scope>test</scope>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000108 </dependency>
109 <dependency>
110 <groupId>org.ops4j.pax.exam</groupId>
111 <artifactId>pax-exam</artifactId>
112 <version>0.6.0</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.ops4j.pax.exam</groupId>
117 <artifactId>pax-exam-junit</artifactId>
118 <version>0.6.0</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>org.ops4j.pax.exam</groupId>
123 <artifactId>pax-exam-container-default</artifactId>
124 <version>0.6.0</version>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.ops4j.pax.swissbox</groupId>
129 <artifactId>pax-swissbox-tinybundles</artifactId>
130 <version>1.0.0</version>
131 <scope>test</scope>
132 </dependency>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000133 </dependencies>
134
135 <build>
136 <plugins>
137 <plugin>
138 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +0000139 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegelerfbb7c812011-09-09 12:26:48 +0000140 <version>2.3.5</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000141 <extensions>true</extensions>
142 <configuration>
143 <instructions>
144 <Bundle-Category>osgi</Bundle-Category>
Felix Meschberger1af21822007-09-04 13:35:05 +0000145 <Bundle-SymbolicName>
Felix Meschberger70141452011-11-03 23:42:50 +0000146 ${project.artifactId}
Felix Meschberger1af21822007-09-04 13:35:05 +0000147 </Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +0000148 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger8309e522011-02-04 06:23:47 +0000149 <Bundle-DocURL>
150 http://felix.apache.org/site/apache-felix-config-admin.html
151 </Bundle-DocURL>
Felix Meschbergerd9305cb2010-09-08 07:39:13 +0000152 <Bundle-Activator>
153 org.apache.felix.cm.impl.ConfigurationManager
154 </Bundle-Activator>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000155 <Export-Package>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000156 <!-- just list, version from package-info classes -->
Felix Meschberger432e3872008-03-07 14:58:57 +0000157 org.apache.felix.cm;
Felix Meschberger1db7be82012-05-30 11:07:49 +0000158 org.apache.felix.cm.file,
159 org.osgi.service.cm;provide:=true
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000160 </Export-Package>
161 <Private-Package>
Felix Meschberger48f6e7a2008-06-13 08:33:54 +0000162 org.apache.felix.cm.impl,
163 org.osgi.util.tracker
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000164 </Private-Package>
Felix Meschberger85b355d2007-08-31 07:17:38 +0000165 <DynamicImport-Package>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000166 <!-- overwrite version from compendium bundle -->
Felix Meschbergerd9305cb2010-09-08 07:39:13 +0000167 org.osgi.service.log;version="1.3"
Felix Meschberger85b355d2007-08-31 07:17:38 +0000168 </DynamicImport-Package>
Guillaume Nodetf4cc54a2011-03-18 13:14:01 +0000169 <Export-Service>
170 org.osgi.service.cm.ConfigurationAdmin;
Felix Meschbergerfff99df2011-10-20 12:39:38 +0000171 service.description="Configuration Admin Service Specification 1.4 Implementation";
Guillaume Nodetf4cc54a2011-03-18 13:14:01 +0000172 service.pid="org.osgi.service.cm.ConfigurationAdmin";
173 service.vendor="Apache Software Foundation",
174 org.apache.felix.cm.PersistenceManager;
175 service.description="Platform Filesystem Persistence Manager";
176 service.pid="org.apache.felix.cm.file.FilePersistenceManager";
177 service.vendor="Apache Software Foundation"
178 </Export-Service>
179 <Import-Service>
180 org.osgi.service.log.LogService;availability:=optional;multiple:=false
181 </Import-Service>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000182 </instructions>
183 </configuration>
184 </plugin>
Felix Meschberger458b1a92012-01-09 08:17:55 +0000185 <plugin>
186 <groupId>org.codehaus.mojo</groupId>
187 <artifactId>animal-sniffer-maven-plugin</artifactId>
188 <version>1.7</version>
189 <configuration>
190 <signature>
191 <groupId>org.codehaus.mojo.signature</groupId>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000192 <artifactId>java15</artifactId>
Felix Meschberger458b1a92012-01-09 08:17:55 +0000193 <version>1.0</version>
194 </signature>
195 </configuration>
196 <executions>
197 <execution>
198 <phase>test</phase>
199 <goals>
200 <goal>check</goal>
201 </goals>
202 </execution>
203 </executions>
204 </plugin>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000205 <plugin>
206 <artifactId>maven-compiler-plugin</artifactId>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000207 <configuration>
Felix Meschberger1db7be82012-05-30 11:07:49 +0000208 <source>1.5</source>
209 <target>1.5</target>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000210 </configuration>
211 </plugin>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000212 <!--
213 Exclude Integration tests in (default) unit tests and
214 conversely enable integration tests for integration testing
215 only. Helper classes are completely excluded from testing.
216 -->
217 <plugin>
218 <artifactId>maven-surefire-plugin</artifactId>
219 <executions>
220 <execution>
221 <id>surefire-it</id>
222 <phase>integration-test</phase>
223 <goals>
224 <goal>test</goal>
225 </goals>
226 <configuration>
Felix Meschberger3aad57c2010-08-25 08:45:50 +0000227 <systemProperties>
228 <property>
229 <name>project.bundle.file</name>
230 <value>${bundle.file.name}</value>
231 </property>
232 </systemProperties>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000233 <excludes>
234 <exclude>**/cm/*</exclude>
235 <exclude>**/cm/file/*</exclude>
236 <exclude>**/cm/impl/**</exclude>
237 </excludes>
238 <includes>
239 <include>**/integration/*</include>
240 </includes>
241 </configuration>
242 </execution>
243 </executions>
244 <configuration>
245 <excludes>
246 <exclude>**/integration/**</exclude>
247 </excludes>
248 </configuration>
249 </plugin>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000250 </plugins>
251 </build>
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000252
Felix Meschberger3aad57c2010-08-25 08:45:50 +0000253 <profiles>
254 <!--
255 copy the package such that IDEs may easily use it without
256 setting the system property
257 -->
258 <profile>
259 <id>ide</id>
260 <build>
261 <plugins>
262 <plugin>
263 <artifactId>maven-antrun-plugin</artifactId>
264 <version>1.3</version>
265 <executions>
266 <execution>
267 <id>cm-file-create</id>
268 <phase>package</phase>
269 <goals>
270 <goal>run</goal>
271 </goals>
272 <configuration>
273 <tasks>
274 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/configadmin.jar" />
275 </tasks>
276 </configuration>
277 </execution>
278 </executions>
279 </plugin>
280 </plugins>
281 </build>
282 </profile>
283 </profiles>
284
Felix Meschberger3121d7a2009-08-14 15:35:27 +0000285 <!-- repositories for Pax Exam and BND tool -->
286 <repositories>
287 <repository>
288 <id>ops4j</id>
289 <name>ops4j</name>
290 <url>http://repository.ops4j.org/maven2</url>
291 <snapshots>
292 <enabled>false</enabled>
293 </snapshots>
294 </repository>
295 <repository>
296 <id>aqute</id>
297 <name>aqute</name>
298 <url>http://www.aqute.biz/repo</url>
299 <snapshots>
300 <enabled>false</enabled>
301 </snapshots>
302 </repository>
303 </repositories>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +0000304</project>