blob: 57eab5fe20939f9674c73b9ccb19bb898575bf86 [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000019<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">
Karl Pauls589e2b32007-07-11 18:29:29 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Felix Meschbergera4ad70a2009-04-27 13:12:37 +000022 <artifactId>felix-parent</artifactId>
Felix Meschberger3229b522011-10-11 18:10:07 +000023 <version>2.1</version>
Felix Meschbergerc1ee5692012-11-07 11:38:42 +000024 <relativePath />
Karl Pauls589e2b32007-07-11 18:29:29 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix Declarative Services</name>
29 <description>
Felix Meschbergerc5aeea62012-11-07 11:27:40 +000030 Implementation of the Declarative Services specification 1.2
Karl Pauls589e2b32007-07-11 18:29:29 +000031 </description>
32 <artifactId>org.apache.felix.scr</artifactId>
David Jencksfa5b9402013-02-04 02:16:13 +000033 <version>1.7-SNAPSHOT</version>
Felix Meschberger4753fcb2009-04-29 08:46:06 +000034 <scm>
Felix Meschberger0a673ff2012-11-07 11:39:02 +000035 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</developerConnection>
37 <url>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</url>
Felix Meschberger4753fcb2009-04-29 08:46:06 +000038 </scm>
Felix Meschberger55e3b972009-10-12 07:16:08 +000039
40 <!--
41 A Note on Testing
42 =================
43
44 This project contains two kinds of tests: regular unit tests running
45 in the test phase and integration tests based on PAX Exam running
46 in the integration-test phase.
47
48 Basically the complete project is build using Java 1.3 source and target
49 compatibility (as inherited from the parent pom). The exception are the
50 unit tests in the "integration" packages. These have to be compiled with
51 Java 5 source and target compatibility because the employ annotations
52 and generics.
53
54 For running the integration tests from the console using Maven nothing
55 special has to be done as the tests run automatically. To run the tests
56 in your IDE, the project has to be built to the "package" phase with
57 the profile "ide" enabled:
58
59 $ mvn -Pide clean package
60
61 This creates the scr.jar file in the target folder, which is used by
62 the integration tests when run from the IDE. Alternatively the
63 "project.bundle.file" system property may be set to the bundle JAR
64 in the IDE launcher.
65 -->
Felix Meschbergerc17fdbd2009-10-12 07:25:39 +000066 <properties>
Felix Meschberger6c63b752009-10-12 08:11:27 +000067 <bundle.build.name>
68 ${basedir}/target
69 </bundle.build.name>
Felix Meschbergere130b0b2009-10-12 07:51:50 +000070 <bundle.file.name>
Felix Meschberger6c63b752009-10-12 08:11:27 +000071 ${bundle.build.name}/${project.build.finalName}.jar
Felix Meschbergere130b0b2009-10-12 07:51:50 +000072 </bundle.file.name>
David Jencksfbf5f8e2013-03-06 02:51:10 +000073 <felix.ca.version>1.0.10</felix.ca.version>
Felix Meschbergerc17fdbd2009-10-12 07:25:39 +000074 </properties>
75
Felix Meschberger55e3b972009-10-12 07:16:08 +000076
Karl Pauls589e2b32007-07-11 18:29:29 +000077 <dependencies>
78 <dependency>
Felix Meschbergerca797922009-10-07 08:38:18 +000079 <groupId>org.osgi</groupId>
Karl Pauls589e2b32007-07-11 18:29:29 +000080 <artifactId>org.osgi.core</artifactId>
David Jencksfbf5f8e2013-03-06 02:51:10 +000081 <version>5.0.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000082 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +000083 </dependency>
84 <dependency>
Felix Meschbergerca797922009-10-07 08:38:18 +000085 <groupId>org.osgi</groupId>
David Jencksfbf5f8e2013-03-06 02:51:10 +000086 <artifactId>org.osgi.enterprise</artifactId>
87 <version>5.0.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000088 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +000089 </dependency>
90 <dependency>
Felix Meschberger02fd53d2011-04-06 15:02:42 +000091 <groupId>${project.groupId}</groupId>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000092 <artifactId>org.apache.felix.shell</artifactId>
93 <version>1.0.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000094 <scope>provided</scope>
Felix Meschberger6c63b752009-10-12 08:11:27 +000095 <exclusions>
96 <exclusion>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.osgi.core</artifactId>
99 </exclusion>
100 </exclusions>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000101 </dependency>
102 <dependency>
Felix Meschberger44add772010-12-23 18:13:24 +0000103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.apache.felix.gogo.runtime</artifactId>
105 <version>0.6.1</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000109 <groupId>net.sf.kxml</groupId>
110 <artifactId>kxml2</artifactId>
111 <version>2.2.2</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +0000112 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +0000113 </dependency>
David Jencksdd6e9d42012-09-11 23:01:29 +0000114
Felix Meschberger47eb0372009-07-28 13:48:28 +0000115 <!-- Integration Testing with Pax Exam -->
116 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000117 <groupId>org.ops4j.pax.exam</groupId>
118 <artifactId>pax-exam-container-forked</artifactId>
David Jencks5ccbba22012-10-19 06:52:50 +0000119 <version>2.4.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +0000120 <scope>test</scope>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000121 </dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000122
Felix Meschberger47eb0372009-07-28 13:48:28 +0000123 <dependency>
124 <groupId>org.ops4j.pax.exam</groupId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000125 <artifactId>pax-exam-junit4</artifactId>
David Jencks5ccbba22012-10-19 06:52:50 +0000126 <version>2.4.0</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000127 <scope>test</scope>
128 </dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000129
Felix Meschberger47eb0372009-07-28 13:48:28 +0000130 <dependency>
131 <groupId>org.ops4j.pax.exam</groupId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000132 <artifactId>pax-exam-link-mvn</artifactId>
David Jencks5ccbba22012-10-19 06:52:50 +0000133 <version>2.4.0</version>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000134 <scope>test</scope>
135 </dependency>
136
137 <dependency>
138 <groupId>org.ops4j.pax.url</groupId>
139 <artifactId>pax-url-aether</artifactId>
140 <version>1.4.0.RC1</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000141 <scope>test</scope>
142 </dependency>
143 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000144 <groupId>org.ops4j.pax.url</groupId>
145 <artifactId>pax-url-wrap</artifactId>
146 <version>1.4.0.RC1</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000147 <scope>test</scope>
148 </dependency>
149 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000150 <groupId>org.ops4j.pax.logging</groupId>
151 <artifactId>pax-logging-api</artifactId>
152 <version>1.6.3</version>
153 <scope>test</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.ops4j.pax.logging</groupId>
157 <artifactId>pax-logging-service</artifactId>
158 <version>1.6.3</version>
159 <scope>test</scope>
160 </dependency>
161
162 <dependency>
163 <groupId>ch.qos.logback</groupId>
164 <artifactId>logback-core</artifactId>
165 <version>0.9.29</version>
166 <scope>test</scope>
167 </dependency>
168
169 <dependency>
170 <groupId>ch.qos.logback</groupId>
171 <artifactId>logback-classic</artifactId>
172 <version>0.9.29</version>
173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.geronimo.specs</groupId>
177 <artifactId>geronimo-atinject_1.0_spec</artifactId>
178 <version>1.0</version>
179 <scope>test</scope>
180 </dependency>
181 <dependency>
David Jencks51432552012-06-05 01:02:17 +0000182 <groupId>org.apache.servicemix.bundles</groupId>
183 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
David Jencks5ccbba22012-10-19 06:52:50 +0000184 <version>4.9_2</version>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000185 <scope>test</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.ops4j.base</groupId>
189 <artifactId>ops4j-base-lang</artifactId>
190 <version>1.2.3</version>
191 <scope>provided</scope>
192 </dependency>
193 <dependency>
194 <groupId>org.ops4j.base</groupId>
195 <artifactId>ops4j-base-net</artifactId>
196 <version>1.2.3</version>
197 <scope>provided</scope>
198 </dependency>
199 <dependency>
200 <groupId>org.ops4j.pax.tinybundles</groupId>
201 <artifactId>tinybundles</artifactId>
202 <version>1.0.0</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000203 <scope>test</scope>
204 </dependency>
David Jencksfbf5f8e2013-03-06 02:51:10 +0000205 <dependency>
206 <groupId>org.codehaus.mojo</groupId>
207 <artifactId>animal-sniffer-annotations</artifactId>
David Jencksddd90942013-04-06 06:52:25 +0000208 <version>1.9</version>
David Jencksfbf5f8e2013-03-06 02:51:10 +0000209 <scope>compile</scope>
210 </dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000211 </dependencies>
212 <build>
Felix Meschberger6c63b752009-10-12 08:11:27 +0000213 <directory>${bundle.build.name}</directory>
Karl Pauls589e2b32007-07-11 18:29:29 +0000214 <plugins>
215 <plugin>
216 <groupId>org.apache.felix</groupId>
217 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000218 <version>2.3.7</version>
Karl Pauls589e2b32007-07-11 18:29:29 +0000219 <extensions>true</extensions>
220 <configuration>
221 <instructions>
Felix Meschberger5ac763d2011-02-04 06:24:05 +0000222 <Bundle-Category>osgi</Bundle-Category>
Karl Pauls589e2b32007-07-11 18:29:29 +0000223 <Bundle-SymbolicName>
Felix Meschberger02fd53d2011-04-06 15:02:42 +0000224 ${project.artifactId}
Karl Pauls589e2b32007-07-11 18:29:29 +0000225 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000226 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger40d3e602009-10-11 12:25:14 +0000227 <Bundle-DocURL>
228 http://felix.apache.org/site/apache-felix-service-component-runtime.html
229 </Bundle-DocURL>
Karl Pauls589e2b32007-07-11 18:29:29 +0000230 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000231 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +0000232 </Bundle-Activator>
233 <Export-Package>
David Jenckscb9f9422013-02-04 02:16:11 +0000234 org.apache.felix.scr;version=1.8,
Felix Meschberger8422a302012-03-08 05:55:06 +0000235 org.apache.felix.scr.component;version=1.0;
236 mandatory:="status"; status="provisional",
Felix Meschbergerca797922009-10-07 08:38:18 +0000237 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +0000238 </Export-Package>
239 <Private-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000240 org.apache.felix.scr.impl.*,
241 org.osgi.util.tracker
Karl Pauls589e2b32007-07-11 18:29:29 +0000242 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000243 <Import-Package>
Felix Meschbergerca797922009-10-07 08:38:18 +0000244 <!--
Felix Meschberger44add772010-12-23 18:13:24 +0000245 optional import for Gogo annotations
246 -->
247 org.apache.felix.service.command;resolution:=optional,
248
249 <!--
Felix Meschbergerca797922009-10-07 08:38:18 +0000250 The Felix Shell support is optional
251 -->
Felix Meschberger95f21262011-11-17 08:24:49 +0000252 org.apache.felix.shell;provide:=true;resolution:=optional,
Felix Meschbergerca797922009-10-07 08:38:18 +0000253
254 <!--
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000255 Framework version 1.4 (from R4.1) is required
256 because we depend on ServiceReference being
257 Comparable and Bundle.getBundleContext method
258 being available.
Felix Meschbergerca797922009-10-07 08:38:18 +0000259 -->
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000260 org.osgi.framework;version="[1.4,2)",
Felix Meschbergerca797922009-10-07 08:38:18 +0000261
262 <!--
Felix Meschbergerd854a922009-10-29 12:28:50 +0000263 LogService is optional but if present the
264 R4.0 version 1.3 is sufficient.
265 -->
266 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
267
268 <!--
Felix Meschberger08aaff62010-08-05 13:26:31 +0000269 PackageAdmin is used to find reference types if
Felix Meschberger95f21262011-11-17 08:24:49 +0000270 the component's bundle does not import it.
271 See BindMethod.getParameterClass(Class) for details.
272 R4.0 version 1.2 is sufficient.
Felix Meschberger08aaff62010-08-05 13:26:31 +0000273 -->
274 org.osgi.service.packageadmin;version="[1.2,2)";resolution:=optional,
275
276 <!--
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000277 SCR API is required (we also export it) and must
Felix Meschberger95f21262011-11-17 08:24:49 +0000278 be of the same minor version as we export, because
279 we implement that exact version. This import is
280 only used if the framework decides to wire the
Felix Meschbergerc87cd722012-09-02 23:39:15 +0000281 bundle to another API provider.
282 (version is automatically deduced from export)
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000283 -->
Felix Meschbergerc87cd722012-09-02 23:39:15 +0000284 org.osgi.service.component;provide:=true,
Felix Meschberger95f21262011-11-17 08:24:49 +0000285
286 <!--
287 SCR Admin API is required (we also export it) and
288 must be of the same minor version as we export,
289 because we implement that exact version. This
290 import is only used if the framework decides to
291 wire the bundle to another API provider.
292 -->
293 org.apache.felix.scr;provide:=true
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000294 </Import-Package>
Felix Meschbergerf873dbe2011-02-04 10:50:18 +0000295 <DynamicImport-Package>
296 <!--
297 Configuration Admin version 1.2 (from R4.0) is enough
298 -->
299 org.osgi.service.cm;version="[1.2,2)",
300
301 <!--
302 Metatype is optional and if it is
303 present, version 1.1 (from R4.1) is enough
304 -->
305 org.osgi.service.metatype;version="[1.1,2)"
306 </DynamicImport-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000307 <Embed-Dependency>
Felix Meschbergera4b12bd2012-05-31 13:06:30 +0000308 kxml2;inline=org/kxml2/io/KXmlParser.class|org/xmlpull/v1/XmlPull**,
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000309 </Embed-Dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000310 </instructions>
311 </configuration>
312 </plugin>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000313
314 <!--
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000315 Ensure not using too recent Java API
Felix Meschbergerd1636bf2012-11-07 11:08:20 +0000316 - Ensure Java 5 API
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000317 -->
David Jencks08a463d2013-01-22 19:19:08 +0000318 <plugin>
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000319 <groupId>org.codehaus.mojo</groupId>
320 <artifactId>animal-sniffer-maven-plugin</artifactId>
321 <version>1.7</version>
322 <configuration>
323 <signature>
324 <groupId>org.codehaus.mojo.signature</groupId>
Felix Meschbergerd1636bf2012-11-07 11:08:20 +0000325 <artifactId>java15</artifactId>
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000326 <version>1.0</version>
327 </signature>
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000328 </configuration>
329 <executions>
330 <execution>
331 <phase>test</phase>
332 <goals>
333 <goal>check</goal>
334 </goals>
335 </execution>
336 </executions>
337 </plugin>
338
339 <!--
Felix Meschbergerd1636bf2012-11-07 11:08:20 +0000340 Configure default compilation for Java 5
Felix Meschberger47eb0372009-07-28 13:48:28 +0000341 -->
342 <plugin>
343 <artifactId>maven-compiler-plugin</artifactId>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000344 <configuration>
David Jencks7978fb92012-10-12 00:40:18 +0000345 <source>1.5</source>
346 <target>1.5</target>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000347 </configuration>
348 </plugin>
349
Felix Meschberger4f43c912012-03-08 04:37:56 +0000350 <!-- plain unit tests -->
Felix Meschberger47eb0372009-07-28 13:48:28 +0000351 <plugin>
352 <artifactId>maven-surefire-plugin</artifactId>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000353 <configuration>
354 <excludes>
355 <exclude>**/integration/**</exclude>
356 <exclude>**/components/**</exclude>
357 <exclude>**/instances/**</exclude>
358 <exclude>**/instances2/**</exclude>
359 </excludes>
360 </configuration>
361 </plugin>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000362 <!-- integration tests run with pax-exam -->
363 <plugin>
364 <artifactId>maven-failsafe-plugin</artifactId>
365 <version>2.12</version>
366 <executions>
367 <execution>
368 <goals>
369 <goal>integration-test</goal>
370 <goal>verify</goal>
371 </goals>
372 </execution>
373 </executions>
374 <configuration>
David Jencksfbf5f8e2013-03-06 02:51:10 +0000375 <systemPropertyVariables>
376 <project.bundle.file>${bundle.file.name}</project.bundle.file>
377 <felix.ca.version>${felix.ca.version}</felix.ca.version>
378 </systemPropertyVariables>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000379 <excludes>
380 <exclude>**/components/**</exclude>
381 </excludes>
382 <includes>
David Jencks91128a42013-04-22 06:44:24 +0000383 <include>**/integration/**</include>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000384 </includes>
385 </configuration>
386 </plugin>
Felix Meschbergerdf922662011-02-04 23:09:29 +0000387 <plugin>
388 <groupId>org.apache.maven.plugins</groupId>
389 <artifactId>maven-javadoc-plugin</artifactId>
390 <configuration>
391 <encoding>${project.build.sourceEncoding}</encoding>
392 <excludePackageNames>*.impl</excludePackageNames>
393 </configuration>
394 </plugin>
David Jenckscb9f9422013-02-04 02:16:11 +0000395 <plugin>
396 <groupId>org.apache.aries.versioning</groupId>
397 <artifactId>org.apache.aries.versioning.plugin</artifactId>
398 <version>0.1.0</version>
399 <executions>
400 <execution>
401 <id>default-verify</id>
402 <phase>verify</phase>
403 <goals>
404 <goal>version-check</goal>
405 </goals>
406 <configuration>
407 <oldArtifact>org.apache.felix:org.apache.felix.scr:1.6.2</oldArtifact>
408 </configuration>
409 </execution>
410 </executions>
411 </plugin>
Karl Pauls589e2b32007-07-11 18:29:29 +0000412 </plugins>
413 </build>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000414
415 <profiles>
416 <!--
417 copy the package such that IDEs may easily use it without
418 setting the system property
419 -->
420 <profile>
421 <id>ide</id>
422 <build>
423 <plugins>
424 <plugin>
425 <artifactId>maven-antrun-plugin</artifactId>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000426 <executions>
427 <execution>
428 <id>scr-file-create</id>
429 <phase>package</phase>
430 <goals>
431 <goal>run</goal>
432 </goals>
433 <configuration>
Felix Meschberger3229b522011-10-11 18:10:07 +0000434 <target>
Felix Meschberger9afc4d72009-11-02 22:28:37 +0000435 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" />
Felix Meschberger3229b522011-10-11 18:10:07 +0000436 </target>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000437 </configuration>
438 </execution>
439 </executions>
440 </plugin>
441 </plugins>
442 </build>
443 </profile>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000444
445 <profile>
446 <id>felix</id>
447 <activation>
448 <activeByDefault>true</activeByDefault>
449 </activation>
450 <dependencies>
451 <dependency>
452 <groupId>org.apache.felix</groupId>
453 <artifactId>org.apache.felix.framework</artifactId>
454 <version>4.0.2</version>
455 <scope>test</scope>
456 </dependency>
457 </dependencies>
458 </profile>
459 <profile>
460 <id>equinox</id>
461 <dependencies>
462 <dependency>
463 <groupId>org.eclipse</groupId>
David Jencks588b3d32013-02-10 07:43:27 +0000464 <artifactId>org.eclipse.osgi</artifactId>
465 <version>3.8.0.v20120529-1548</version>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000466 <scope>test</scope>
467 </dependency>
468 </dependencies>
469 </profile>
David Jencksfbf5f8e2013-03-06 02:51:10 +0000470 <profile>
471 <!-- use to test with R5 ca, change count, targetetPids -->
472 <!-- remember you need to specify all profiles using this, e.g. -PcaR5,felix -->
473 <id>caR5</id>
474 <properties>
475 <felix.ca.version>1.6.0</felix.ca.version>
476 </properties>
477 </profile>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000478 </profiles>
479
Karl Pauls589e2b32007-07-11 18:29:29 +0000480</project>