blob: 4fc4edc26f47bc833e430c26851ea2fec76f1896 [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 Meschberger4f43c912012-03-08 04:37:56 +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 Meschberger39d6c582010-05-28 20:28:18 +000030 Implementation of the Declarative Services specification 1.1
Karl Pauls589e2b32007-07-11 18:29:29 +000031 </description>
32 <artifactId>org.apache.felix.scr</artifactId>
Felix Meschberger38dd63b2010-08-10 12:19:28 +000033 <version>1.6.1-SNAPSHOT</version>
Felix Meschberger4753fcb2009-04-29 08:46:06 +000034 <scm>
Felix Meschberger38dd63b2010-08-10 12:19:28 +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>
Felix Meschbergerc17fdbd2009-10-12 07:25:39 +000073 </properties>
74
Felix Meschberger55e3b972009-10-12 07:16:08 +000075
Karl Pauls589e2b32007-07-11 18:29:29 +000076 <dependencies>
77 <dependency>
Felix Meschbergerca797922009-10-07 08:38:18 +000078 <groupId>org.osgi</groupId>
Karl Pauls589e2b32007-07-11 18:29:29 +000079 <artifactId>org.osgi.core</artifactId>
Felix Meschbergerca797922009-10-07 08:38:18 +000080 <version>4.1.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000081 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +000082 </dependency>
83 <dependency>
Felix Meschbergerca797922009-10-07 08:38:18 +000084 <groupId>org.osgi</groupId>
Karl Pauls589e2b32007-07-11 18:29:29 +000085 <artifactId>org.osgi.compendium</artifactId>
David Jencks27fb81a2012-08-09 16:18:55 +000086 <version>4.3.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000087 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +000088 </dependency>
89 <dependency>
Felix Meschberger02fd53d2011-04-06 15:02:42 +000090 <groupId>${project.groupId}</groupId>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000091 <artifactId>org.apache.felix.shell</artifactId>
92 <version>1.0.0</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +000093 <scope>provided</scope>
Felix Meschberger6c63b752009-10-12 08:11:27 +000094 <exclusions>
95 <exclusion>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>org.osgi.core</artifactId>
98 </exclusion>
99 </exclusions>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000100 </dependency>
101 <dependency>
Felix Meschberger44add772010-12-23 18:13:24 +0000102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.gogo.runtime</artifactId>
104 <version>0.6.1</version>
105 <scope>provided</scope>
106 </dependency>
107 <dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000108 <groupId>net.sf.kxml</groupId>
109 <artifactId>kxml2</artifactId>
110 <version>2.2.2</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +0000111 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +0000112 </dependency>
Felix Meschbergera4b12bd2012-05-31 13:06:30 +0000113 <dependency>
David Jencksdd6e9d42012-09-11 23:01:29 +0000114 <groupId>backport-util-concurrent</groupId>
115 <artifactId>backport-util-concurrent</artifactId>
116 <version>3.1</version>
Felix Meschbergera4b12bd2012-05-31 13:06:30 +0000117 <scope>provided</scope>
118 </dependency>
David Jencksdd6e9d42012-09-11 23:01:29 +0000119
Felix Meschberger47eb0372009-07-28 13:48:28 +0000120 <!-- Integration Testing with Pax Exam -->
121 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000122 <groupId>org.ops4j.pax.exam</groupId>
123 <artifactId>pax-exam-container-forked</artifactId>
124 <version>2.4.0.RC1</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +0000125 <scope>test</scope>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000126 </dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000127
Felix Meschberger47eb0372009-07-28 13:48:28 +0000128 <dependency>
129 <groupId>org.ops4j.pax.exam</groupId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000130 <artifactId>pax-exam-junit4</artifactId>
131 <version>2.4.0.RC1</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000132 <scope>test</scope>
133 </dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000134
Felix Meschberger47eb0372009-07-28 13:48:28 +0000135 <dependency>
136 <groupId>org.ops4j.pax.exam</groupId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000137 <artifactId>pax-exam-link-mvn</artifactId>
138 <version>2.4.0.RC1</version>
139 <scope>test</scope>
140 </dependency>
141
142 <dependency>
143 <groupId>org.ops4j.pax.url</groupId>
144 <artifactId>pax-url-aether</artifactId>
145 <version>1.4.0.RC1</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000146 <scope>test</scope>
147 </dependency>
148 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000149 <groupId>org.ops4j.pax.url</groupId>
150 <artifactId>pax-url-wrap</artifactId>
151 <version>1.4.0.RC1</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000152 <scope>test</scope>
153 </dependency>
154 <dependency>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000155 <groupId>org.ops4j.pax.logging</groupId>
156 <artifactId>pax-logging-api</artifactId>
157 <version>1.6.3</version>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>org.ops4j.pax.logging</groupId>
162 <artifactId>pax-logging-service</artifactId>
163 <version>1.6.3</version>
164 <scope>test</scope>
165 </dependency>
166
167 <dependency>
168 <groupId>ch.qos.logback</groupId>
169 <artifactId>logback-core</artifactId>
170 <version>0.9.29</version>
171 <scope>test</scope>
172 </dependency>
173
174 <dependency>
175 <groupId>ch.qos.logback</groupId>
176 <artifactId>logback-classic</artifactId>
177 <version>0.9.29</version>
178 <scope>test</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.geronimo.specs</groupId>
182 <artifactId>geronimo-atinject_1.0_spec</artifactId>
183 <version>1.0</version>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
David Jencks51432552012-06-05 01:02:17 +0000187 <groupId>org.apache.servicemix.bundles</groupId>
188 <artifactId>org.apache.servicemix.bundles.junit</artifactId>
189 <version>4.7_2</version>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000190 <scope>test</scope>
191 </dependency>
192 <dependency>
193 <groupId>org.ops4j.base</groupId>
194 <artifactId>ops4j-base-lang</artifactId>
195 <version>1.2.3</version>
196 <scope>provided</scope>
197 </dependency>
198 <dependency>
199 <groupId>org.ops4j.base</groupId>
200 <artifactId>ops4j-base-net</artifactId>
201 <version>1.2.3</version>
202 <scope>provided</scope>
203 </dependency>
204 <dependency>
205 <groupId>org.ops4j.pax.tinybundles</groupId>
206 <artifactId>tinybundles</artifactId>
207 <version>1.0.0</version>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000208 <scope>test</scope>
209 </dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000210 </dependencies>
211 <build>
Felix Meschberger6c63b752009-10-12 08:11:27 +0000212 <directory>${bundle.build.name}</directory>
Karl Pauls589e2b32007-07-11 18:29:29 +0000213 <plugins>
214 <plugin>
215 <groupId>org.apache.felix</groupId>
216 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000217 <version>2.3.7</version>
Karl Pauls589e2b32007-07-11 18:29:29 +0000218 <extensions>true</extensions>
219 <configuration>
220 <instructions>
Felix Meschberger5ac763d2011-02-04 06:24:05 +0000221 <Bundle-Category>osgi</Bundle-Category>
Karl Pauls589e2b32007-07-11 18:29:29 +0000222 <Bundle-SymbolicName>
Felix Meschberger02fd53d2011-04-06 15:02:42 +0000223 ${project.artifactId}
Karl Pauls589e2b32007-07-11 18:29:29 +0000224 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000225 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger40d3e602009-10-11 12:25:14 +0000226 <Bundle-DocURL>
227 http://felix.apache.org/site/apache-felix-service-component-runtime.html
228 </Bundle-DocURL>
Karl Pauls589e2b32007-07-11 18:29:29 +0000229 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000230 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +0000231 </Bundle-Activator>
232 <Export-Package>
Felix Meschbergerb8ab8932012-05-17 13:39:34 +0000233 org.apache.felix.scr;version=1.7,
Felix Meschberger8422a302012-03-08 05:55:06 +0000234 org.apache.felix.scr.component;version=1.0;
235 mandatory:="status"; status="provisional",
Felix Meschbergerca797922009-10-07 08:38:18 +0000236 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +0000237 </Export-Package>
238 <Private-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000239 org.apache.felix.scr.impl.*,
240 org.osgi.util.tracker
Karl Pauls589e2b32007-07-11 18:29:29 +0000241 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000242 <Import-Package>
Felix Meschbergerca797922009-10-07 08:38:18 +0000243 <!--
Felix Meschberger44add772010-12-23 18:13:24 +0000244 optional import for Gogo annotations
245 -->
246 org.apache.felix.service.command;resolution:=optional,
247
248 <!--
Felix Meschbergerca797922009-10-07 08:38:18 +0000249 The Felix Shell support is optional
250 -->
Felix Meschberger95f21262011-11-17 08:24:49 +0000251 org.apache.felix.shell;provide:=true;resolution:=optional,
Felix Meschbergerca797922009-10-07 08:38:18 +0000252
253 <!--
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000254 Framework version 1.4 (from R4.1) is required
255 because we depend on ServiceReference being
256 Comparable and Bundle.getBundleContext method
257 being available.
Felix Meschbergerca797922009-10-07 08:38:18 +0000258 -->
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000259 org.osgi.framework;version="[1.4,2)",
Felix Meschbergerca797922009-10-07 08:38:18 +0000260
261 <!--
Felix Meschbergerd854a922009-10-29 12:28:50 +0000262 LogService is optional but if present the
263 R4.0 version 1.3 is sufficient.
264 -->
265 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
266
267 <!--
Felix Meschberger08aaff62010-08-05 13:26:31 +0000268 PackageAdmin is used to find reference types if
Felix Meschberger95f21262011-11-17 08:24:49 +0000269 the component's bundle does not import it.
270 See BindMethod.getParameterClass(Class) for details.
271 R4.0 version 1.2 is sufficient.
Felix Meschberger08aaff62010-08-05 13:26:31 +0000272 -->
273 org.osgi.service.packageadmin;version="[1.2,2)";resolution:=optional,
274
275 <!--
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000276 SCR API is required (we also export it) and must
Felix Meschberger95f21262011-11-17 08:24:49 +0000277 be of the same minor version as we export, because
278 we implement that exact version. This import is
279 only used if the framework decides to wire the
Felix Meschbergerc87cd722012-09-02 23:39:15 +0000280 bundle to another API provider.
281 (version is automatically deduced from export)
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000282 -->
Felix Meschbergerc87cd722012-09-02 23:39:15 +0000283 org.osgi.service.component;provide:=true,
Felix Meschberger95f21262011-11-17 08:24:49 +0000284
285 <!--
286 SCR Admin API is required (we also export it) and
287 must be of the same minor version as we export,
288 because we implement that exact version. This
289 import is only used if the framework decides to
290 wire the bundle to another API provider.
291 -->
292 org.apache.felix.scr;provide:=true
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000293 </Import-Package>
Felix Meschbergerf873dbe2011-02-04 10:50:18 +0000294 <DynamicImport-Package>
295 <!--
296 Configuration Admin version 1.2 (from R4.0) is enough
297 -->
298 org.osgi.service.cm;version="[1.2,2)",
299
300 <!--
301 Metatype is optional and if it is
302 present, version 1.1 (from R4.1) is enough
303 -->
304 org.osgi.service.metatype;version="[1.1,2)"
305 </DynamicImport-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000306 <Embed-Dependency>
Felix Meschbergera4b12bd2012-05-31 13:06:30 +0000307 kxml2;inline=org/kxml2/io/KXmlParser.class|org/xmlpull/v1/XmlPull**,
David Jencksdd6e9d42012-09-11 23:01:29 +0000308 backport-util-concurrent;inline=edu/emory/mathcs/backport/java/util/concurrent/TimeUnit.class
309 |edu/emory/mathcs/backport/java/util/concurrent/TimeUnit*.class
310 |edu/emory/mathcs/backport/java/util/concurrent/locks/ReentrantReadWriteLock.class
311 |edu/emory/mathcs/backport/java/util/concurrent/locks/ReentrantReadWriteLock*.class
312 |edu/emory/mathcs/backport/java/util/concurrent/locks/ReadWriteLock.class
313 |edu/emory/mathcs/backport/java/util/concurrent/locks/Lock.class
314 |edu/emory/mathcs/backport/java/util/concurrent/locks/Condition.class
315 |edu/emory/mathcs/backport/java/util/concurrent/locks/CondVar.class
316 |edu/emory/mathcs/backport/java/util/concurrent/locks/CondVar*.class
317 |edu/emory/mathcs/backport/java/util/concurrent/helpers/NanoTimer.class
318 |edu/emory/mathcs/backport/java/util/Arrays.class
319 |edu/emory/mathcs/backport/java/util/concurrent/helpers/Utils.class
320 |edu/emory/mathcs/backport/java/util/concurrent/helpers/Utils*1.class
321 |edu/emory/mathcs/backport/java/util/concurrent/helpers/Utils*MillisProvider.class
322 |edu/emory/mathcs/backport/java/util/concurrent/atomic/AtomicReference.class
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000323 </Embed-Dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000324 </instructions>
325 </configuration>
326 </plugin>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000327
328 <!--
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000329 Ensure not using too recent Java API
330 - for now touch base on Java 1.4
331 - Ignore some known Java 5 classes (used in JLock)
332 -->
333 <plugin>
334 <groupId>org.codehaus.mojo</groupId>
335 <artifactId>animal-sniffer-maven-plugin</artifactId>
336 <version>1.7</version>
337 <configuration>
338 <signature>
339 <groupId>org.codehaus.mojo.signature</groupId>
340 <artifactId>java14</artifactId>
341 <version>1.0</version>
342 </signature>
343 <ignores>
David Jencks9f8ab352012-08-09 16:18:22 +0000344 <ignore>java.util.concurrent.atomic.AtomicReference</ignore>
345 <ignore>java.util.concurrent.locks.ReentrantReadWriteLock</ignore>
346 <ignore>java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock</ignore>
347 <ignore>java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock</ignore>
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000348 <ignore>java.util.concurrent.TimeUnit</ignore>
David Jencksd9347302012-08-09 16:18:49 +0000349 <ignore>java.lang.management.ManagementFactory</ignore>
350 <ignore>java.lang.management.ThreadInfo</ignore>
351 <ignore>java.lang.management.ThreadMXBean</ignore>
Felix Meschberger47a0c6e2012-05-31 13:48:16 +0000352 </ignores>
353 </configuration>
354 <executions>
355 <execution>
356 <phase>test</phase>
357 <goals>
358 <goal>check</goal>
359 </goals>
360 </execution>
361 </executions>
362 </plugin>
363
364 <!--
Felix Meschberger44add772010-12-23 18:13:24 +0000365 Configure default compilation for Java 1.3 and integration
Felix Meschberger47eb0372009-07-28 13:48:28 +0000366 test compilation for Java 5 (since integration tests use
Felix Meschberger44add772010-12-23 18:13:24 +0000367 Java Annotations for Pax Exam).
368 Also configure the compilation of the Gogo Command class
369 (using Java 5 annotations) with Java 5 target.
Felix Meschberger47eb0372009-07-28 13:48:28 +0000370 -->
371 <plugin>
372 <artifactId>maven-compiler-plugin</artifactId>
373 <executions>
374 <execution>
Felix Meschberger44add772010-12-23 18:13:24 +0000375 <id>compile-java5</id>
376 <goals>
377 <goal>compile</goal>
378 </goals>
379 <configuration>
380 <source>1.5</source>
381 <target>1.5</target>
382 <excludes>
383 <exclude>dummy-to-overwrite-global-config</exclude>
384 </excludes>
385 <includes>
386 <include>**/ScrGogoCommand.java</include>
387 </includes>
388 </configuration>
389 </execution>
390 <execution>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000391 <id>test-compile-java5</id>
392 <goals>
393 <goal>testCompile</goal>
394 </goals>
395 <configuration>
396 <source>1.5</source>
397 <target>1.5</target>
398 <testIncludes>
399 <testInclude>**/integration/**</testInclude>
400 </testIncludes>
401 <testExcludes>
402 <testExclude>**/impl/**</testExclude>
403 </testExcludes>
404 </configuration>
405 </execution>
406 </executions>
407 <configuration>
408 <testExcludes>
409 <testExclude>**/integration/**</testExclude>
410 </testExcludes>
Felix Meschberger44add772010-12-23 18:13:24 +0000411 <excludes>
412 <exclude>**/ScrGogoCommand.java</exclude>
413 </excludes>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000414 </configuration>
415 </plugin>
416
Felix Meschberger4f43c912012-03-08 04:37:56 +0000417 <!-- plain unit tests -->
Felix Meschberger47eb0372009-07-28 13:48:28 +0000418 <plugin>
419 <artifactId>maven-surefire-plugin</artifactId>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000420 <configuration>
421 <excludes>
422 <exclude>**/integration/**</exclude>
423 <exclude>**/components/**</exclude>
424 <exclude>**/instances/**</exclude>
425 <exclude>**/instances2/**</exclude>
426 </excludes>
427 </configuration>
428 </plugin>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000429 <!-- integration tests run with pax-exam -->
430 <plugin>
431 <artifactId>maven-failsafe-plugin</artifactId>
432 <version>2.12</version>
433 <executions>
434 <execution>
435 <goals>
436 <goal>integration-test</goal>
437 <goal>verify</goal>
438 </goals>
439 </execution>
440 </executions>
441 <configuration>
442 <systemProperties>
443 <property>
444 <name>project.bundle.file</name>
445 <value>${bundle.file.name}</value>
446 </property>
447 </systemProperties>
448 <excludes>
449 <exclude>**/components/**</exclude>
450 </excludes>
451 <includes>
Felix Meschberger8422a302012-03-08 05:55:06 +0000452 <include>**/integration/**</include>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000453 </includes>
454 </configuration>
455 </plugin>
Felix Meschbergerdf922662011-02-04 23:09:29 +0000456 <plugin>
457 <groupId>org.apache.maven.plugins</groupId>
458 <artifactId>maven-javadoc-plugin</artifactId>
459 <configuration>
460 <encoding>${project.build.sourceEncoding}</encoding>
461 <excludePackageNames>*.impl</excludePackageNames>
462 </configuration>
463 </plugin>
Karl Pauls589e2b32007-07-11 18:29:29 +0000464 </plugins>
465 </build>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000466
467 <profiles>
468 <!--
469 copy the package such that IDEs may easily use it without
470 setting the system property
471 -->
472 <profile>
473 <id>ide</id>
474 <build>
475 <plugins>
476 <plugin>
477 <artifactId>maven-antrun-plugin</artifactId>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000478 <executions>
479 <execution>
480 <id>scr-file-create</id>
481 <phase>package</phase>
482 <goals>
483 <goal>run</goal>
484 </goals>
485 <configuration>
Felix Meschberger3229b522011-10-11 18:10:07 +0000486 <target>
Felix Meschberger9afc4d72009-11-02 22:28:37 +0000487 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" />
Felix Meschberger3229b522011-10-11 18:10:07 +0000488 </target>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000489 </configuration>
490 </execution>
491 </executions>
492 </plugin>
493 </plugins>
494 </build>
495 </profile>
Felix Meschberger4f43c912012-03-08 04:37:56 +0000496
497 <profile>
498 <id>felix</id>
499 <activation>
500 <activeByDefault>true</activeByDefault>
501 </activation>
502 <dependencies>
503 <dependency>
504 <groupId>org.apache.felix</groupId>
505 <artifactId>org.apache.felix.framework</artifactId>
506 <version>4.0.2</version>
507 <scope>test</scope>
508 </dependency>
509 </dependencies>
510 </profile>
511 <profile>
512 <id>equinox</id>
513 <dependencies>
514 <dependency>
515 <groupId>org.eclipse</groupId>
516 <artifactId>osgi</artifactId>
517 <version>3.7.1.R37x_v20110808-1106</version>
518 <scope>test</scope>
519 </dependency>
520 </dependencies>
521 </profile>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000522 </profiles>
523
Karl Pauls589e2b32007-07-11 18:29:29 +0000524</project>