blob: a5ee3c673ea7daf75b6cf98d22bcd50a7a9cab14 [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>
23 <version>1.2.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </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>
Felix Meschbergerca797922009-10-07 08:38:18 +000086 <version>4.2.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 Meschbergerd25a63d2007-11-23 13:02:49 +000090 <groupId>${pom.groupId}</groupId>
91 <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 Meschberger47eb0372009-07-28 13:48:28 +0000113
114 <!-- Integration Testing with Pax Exam -->
115 <dependency>
116 <groupId>junit</groupId>
117 <artifactId>junit</artifactId>
118 <version>4.6</version>
Felix Meschbergerbbd1e9d2009-10-11 08:18:18 +0000119 <scope>test</scope>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000120 </dependency>
121 <dependency>
122 <groupId>org.ops4j.pax.exam</groupId>
123 <artifactId>pax-exam</artifactId>
124 <version>0.6.0</version>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.ops4j.pax.exam</groupId>
129 <artifactId>pax-exam-junit</artifactId>
130 <version>0.6.0</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>org.ops4j.pax.exam</groupId>
135 <artifactId>pax-exam-container-default</artifactId>
136 <version>0.6.0</version>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>org.ops4j.pax.swissbox</groupId>
141 <artifactId>pax-swissbox-tinybundles</artifactId>
142 <version>1.0.0</version>
143 <scope>test</scope>
144 </dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000145 </dependencies>
146 <build>
Felix Meschberger6c63b752009-10-12 08:11:27 +0000147 <directory>${bundle.build.name}</directory>
Felix Meschberger198140c2010-08-12 07:37:34 +0000148 <resources>
149 <resource>
150 <directory>${basedir}/src/main/resources</directory>
151 </resource>
152 <resource>
153 <targetPath>META-INF</targetPath>
154 <directory>${basedir}</directory>
155 <includes>
156 <include>LICENSE</include>
157 <include>NOTICE</include>
158 <include>DEPENDENCIES</include>
159 </includes>
160 </resource>
161 </resources>
Karl Pauls589e2b32007-07-11 18:29:29 +0000162 <plugins>
163 <plugin>
164 <groupId>org.apache.felix</groupId>
165 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger5fbf0f12009-12-07 07:52:51 +0000166 <version>2.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +0000167 <extensions>true</extensions>
168 <configuration>
169 <instructions>
Felix Meschberger5ac763d2011-02-04 06:24:05 +0000170 <Bundle-Category>osgi</Bundle-Category>
Karl Pauls589e2b32007-07-11 18:29:29 +0000171 <Bundle-SymbolicName>
172 ${artifactId}
173 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +0000174 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger40d3e602009-10-11 12:25:14 +0000175 <Bundle-DocURL>
176 http://felix.apache.org/site/apache-felix-service-component-runtime.html
177 </Bundle-DocURL>
Karl Pauls589e2b32007-07-11 18:29:29 +0000178 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000179 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +0000180 </Bundle-Activator>
181 <Export-Package>
Felix Meschberger0da1bab2010-08-03 08:55:21 +0000182 org.apache.felix.scr;version=1.6,
Felix Meschbergerca797922009-10-07 08:38:18 +0000183 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +0000184 </Export-Package>
185 <Private-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000186 org.apache.felix.scr.impl.*,
187 org.osgi.util.tracker
Karl Pauls589e2b32007-07-11 18:29:29 +0000188 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000189 <Import-Package>
Felix Meschbergerca797922009-10-07 08:38:18 +0000190 <!--
Felix Meschberger44add772010-12-23 18:13:24 +0000191 optional import for Gogo annotations
192 -->
193 org.apache.felix.service.command;resolution:=optional,
194
195 <!--
Felix Meschbergerca797922009-10-07 08:38:18 +0000196 The Felix Shell support is optional
197 -->
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000198 org.apache.felix.shell; resolution:=optional,
Felix Meschbergerca797922009-10-07 08:38:18 +0000199
200 <!--
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000201 Framework version 1.4 (from R4.1) is required
202 because we depend on ServiceReference being
203 Comparable and Bundle.getBundleContext method
204 being available.
Felix Meschbergerca797922009-10-07 08:38:18 +0000205 -->
Felix Meschberger8a8c6332009-10-29 13:48:37 +0000206 org.osgi.framework;version="[1.4,2)",
Felix Meschbergerca797922009-10-07 08:38:18 +0000207
208 <!--
Felix Meschbergerd854a922009-10-29 12:28:50 +0000209 LogService is optional but if present the
210 R4.0 version 1.3 is sufficient.
211 -->
212 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
213
214 <!--
Felix Meschberger08aaff62010-08-05 13:26:31 +0000215 PackageAdmin is used to find reference types if
216 the any component's bundle does not import it.
217 See BindMethod.getParameterClass(Class) for details
218 -->
219 org.osgi.service.packageadmin;version="[1.2,2)";resolution:=optional,
220
221 <!--
Felix Meschberger131ef022010-12-23 18:28:58 +0000222 Configuration Admin version 1.2 (from R4.0) is enough
223 (FELIX-2578: API is currently required)
Felix Meschbergerca797922009-10-07 08:38:18 +0000224 -->
Felix Meschberger131ef022010-12-23 18:28:58 +0000225 org.osgi.service.cm;version="[1.2,2)",
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000226
227 <!--
Carsten Ziegeler6b5f9af2010-01-20 15:04:58 +0000228 Metatype is optional and if it is
229 present, version 1.1 (from R4.1) is enough
230 -->
231 org.osgi.service.metatype;version="[1.1,2)";resolution:=optional,
232
233 <!--
Felix Meschbergerf6066cb2009-10-29 11:05:31 +0000234 SCR API is required (we also export it) and must
235 be of any 1.1 version, because we implement that
236 exact version. This import is only used if the
237 framework decides to wire the bundle to another
238 API provider.
239 -->
240 org.osgi.service.component;version="[1.1,1.2)"
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000241 </Import-Package>
Felix Meschberger9b4e0232009-07-09 12:34:12 +0000242 <Embed-Dependency>
243 kxml2
244 </Embed-Dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000245 </instructions>
246 </configuration>
247 </plugin>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000248
249 <!--
Felix Meschberger44add772010-12-23 18:13:24 +0000250 Configure default compilation for Java 1.3 and integration
Felix Meschberger47eb0372009-07-28 13:48:28 +0000251 test compilation for Java 5 (since integration tests use
Felix Meschberger44add772010-12-23 18:13:24 +0000252 Java Annotations for Pax Exam).
253 Also configure the compilation of the Gogo Command class
254 (using Java 5 annotations) with Java 5 target.
Felix Meschberger47eb0372009-07-28 13:48:28 +0000255 -->
256 <plugin>
257 <artifactId>maven-compiler-plugin</artifactId>
258 <executions>
259 <execution>
Felix Meschberger44add772010-12-23 18:13:24 +0000260 <id>compile-java5</id>
261 <goals>
262 <goal>compile</goal>
263 </goals>
264 <configuration>
265 <source>1.5</source>
266 <target>1.5</target>
267 <excludes>
268 <exclude>dummy-to-overwrite-global-config</exclude>
269 </excludes>
270 <includes>
271 <include>**/ScrGogoCommand.java</include>
272 </includes>
273 </configuration>
274 </execution>
275 <execution>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000276 <id>test-compile-java5</id>
277 <goals>
278 <goal>testCompile</goal>
279 </goals>
280 <configuration>
281 <source>1.5</source>
282 <target>1.5</target>
283 <testIncludes>
284 <testInclude>**/integration/**</testInclude>
285 </testIncludes>
286 <testExcludes>
287 <testExclude>**/impl/**</testExclude>
288 </testExcludes>
289 </configuration>
290 </execution>
291 </executions>
292 <configuration>
293 <testExcludes>
294 <testExclude>**/integration/**</testExclude>
295 </testExcludes>
Felix Meschberger44add772010-12-23 18:13:24 +0000296 <excludes>
297 <exclude>**/ScrGogoCommand.java</exclude>
298 </excludes>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000299 </configuration>
300 </plugin>
301
302 <!--
303 Exclude Integration tests in (default) unit tests and
304 conversely enable integration tests for integration testing
305 only. Helper classes are completely excluded from testing.
306 -->
307 <plugin>
308 <artifactId>maven-surefire-plugin</artifactId>
309 <executions>
310 <execution>
311 <id>surefire-it</id>
312 <phase>integration-test</phase>
313 <goals>
314 <goal>test</goal>
315 </goals>
316 <configuration>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000317 <systemProperties>
318 <property>
319 <name>project.bundle.file</name>
Felix Meschbergere130b0b2009-10-12 07:51:50 +0000320 <value>${bundle.file.name}</value>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000321 </property>
322 </systemProperties>
Felix Meschberger47eb0372009-07-28 13:48:28 +0000323 <excludes>
324 <exclude>**/components/**</exclude>
325 </excludes>
326 <includes>
327 <include>**/integration/*</include>
328 </includes>
329 </configuration>
330 </execution>
331 </executions>
332 <configuration>
333 <excludes>
334 <exclude>**/integration/**</exclude>
335 <exclude>**/components/**</exclude>
336 <exclude>**/instances/**</exclude>
337 <exclude>**/instances2/**</exclude>
338 </excludes>
339 </configuration>
340 </plugin>
Karl Pauls589e2b32007-07-11 18:29:29 +0000341 </plugins>
342 </build>
Felix Meschberger55e3b972009-10-12 07:16:08 +0000343
344 <profiles>
345 <!--
346 copy the package such that IDEs may easily use it without
347 setting the system property
348 -->
349 <profile>
350 <id>ide</id>
351 <build>
352 <plugins>
353 <plugin>
354 <artifactId>maven-antrun-plugin</artifactId>
355 <version>1.3</version>
356 <executions>
357 <execution>
358 <id>scr-file-create</id>
359 <phase>package</phase>
360 <goals>
361 <goal>run</goal>
362 </goals>
363 <configuration>
364 <tasks>
Felix Meschberger9afc4d72009-11-02 22:28:37 +0000365 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" />
Felix Meschberger55e3b972009-10-12 07:16:08 +0000366 </tasks>
367 </configuration>
368 </execution>
369 </executions>
370 </plugin>
371 </plugins>
372 </build>
373 </profile>
374 </profiles>
375
Felix Meschberger47eb0372009-07-28 13:48:28 +0000376 <!-- repositories for Pax Exam and BND tool -->
377 <repositories>
378 <repository>
379 <id>ops4j</id>
380 <name>ops4j</name>
381 <url>http://repository.ops4j.org/maven2</url>
382 <snapshots>
383 <enabled>false</enabled>
384 </snapshots>
385 </repository>
386 <repository>
387 <id>aqute</id>
388 <name>aqute</name>
389 <url>http://www.aqute.biz/repo</url>
390 <snapshots>
391 <enabled>false</enabled>
392 </snapshots>
393 </repository>
394 </repositories>
Karl Pauls589e2b32007-07-11 18:29:29 +0000395</project>