blob: 2df9bee8f51f6fca4687b10c578665f488d0473d [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 Meschbergereda237f2009-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 Meschbergerc3de8e62010-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 Meschberger33cea8c2009-12-15 08:54:54 +000033 <version>1.4.1-SNAPSHOT</version>
Felix Meschbergera2eafef2009-04-29 08:46:06 +000034 <scm>
Felix Meschberger33cea8c2009-12-15 08:54:54 +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 Meschbergera2eafef2009-04-29 08:46:06 +000038 </scm>
Felix Meschbergerc71d0e72009-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 Meschberger0d2db8e2009-10-12 07:25:39 +000066 <properties>
Felix Meschbergerb3f548d2009-10-12 08:11:27 +000067 <bundle.build.name>
68 ${basedir}/target
69 </bundle.build.name>
Felix Meschberger80fc0fc2009-10-12 07:51:50 +000070 <bundle.file.name>
Felix Meschbergerb3f548d2009-10-12 08:11:27 +000071 ${bundle.build.name}/${project.build.finalName}.jar
Felix Meschberger80fc0fc2009-10-12 07:51:50 +000072 </bundle.file.name>
Felix Meschberger0d2db8e2009-10-12 07:25:39 +000073 </properties>
74
Felix Meschbergerc71d0e72009-10-12 07:16:08 +000075
Karl Pauls589e2b32007-07-11 18:29:29 +000076 <dependencies>
77 <dependency>
Felix Meschberger21a301e2009-10-07 08:38:18 +000078 <groupId>org.osgi</groupId>
Karl Pauls589e2b32007-07-11 18:29:29 +000079 <artifactId>org.osgi.core</artifactId>
Felix Meschberger21a301e2009-10-07 08:38:18 +000080 <version>4.1.0</version>
Felix Meschbergerc8dbf482009-10-11 08:18:18 +000081 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +000082 </dependency>
83 <dependency>
Felix Meschberger21a301e2009-10-07 08:38:18 +000084 <groupId>org.osgi</groupId>
Karl Pauls589e2b32007-07-11 18:29:29 +000085 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger21a301e2009-10-07 08:38:18 +000086 <version>4.2.0</version>
Felix Meschbergerc8dbf482009-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 Meschbergerc8dbf482009-10-11 08:18:18 +000093 <scope>provided</scope>
Felix Meschbergerb3f548d2009-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>
Karl Pauls589e2b32007-07-11 18:29:29 +0000102 <groupId>net.sf.kxml</groupId>
103 <artifactId>kxml2</artifactId>
104 <version>2.2.2</version>
Felix Meschbergerc8dbf482009-10-11 08:18:18 +0000105 <scope>provided</scope>
Karl Pauls589e2b32007-07-11 18:29:29 +0000106 </dependency>
Felix Meschberger8c64e852009-07-28 13:48:28 +0000107
108 <!-- Integration Testing with Pax Exam -->
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
112 <version>4.6</version>
Felix Meschbergerc8dbf482009-10-11 08:18:18 +0000113 <scope>test</scope>
Felix Meschberger8c64e852009-07-28 13:48:28 +0000114 </dependency>
115 <dependency>
116 <groupId>org.ops4j.pax.exam</groupId>
117 <artifactId>pax-exam</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-junit</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-container-default</artifactId>
130 <version>0.6.0</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>org.ops4j.pax.swissbox</groupId>
135 <artifactId>pax-swissbox-tinybundles</artifactId>
136 <version>1.0.0</version>
137 <scope>test</scope>
138 </dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000139 </dependencies>
140 <build>
Felix Meschbergerb3f548d2009-10-12 08:11:27 +0000141 <directory>${bundle.build.name}</directory>
Karl Pauls589e2b32007-07-11 18:29:29 +0000142 <plugins>
143 <plugin>
144 <groupId>org.apache.felix</groupId>
145 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergerfa66da02009-12-07 07:52:51 +0000146 <version>2.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +0000147 <extensions>true</extensions>
148 <configuration>
149 <instructions>
150 <Bundle-SymbolicName>
151 ${artifactId}
152 </Bundle-SymbolicName>
Carsten Ziegeler90f0b9f2008-04-17 06:33:59 +0000153 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschberger0062b3c2009-10-11 12:25:14 +0000154 <Bundle-DocURL>
155 http://felix.apache.org/site/apache-felix-service-component-runtime.html
156 </Bundle-DocURL>
Karl Pauls589e2b32007-07-11 18:29:29 +0000157 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000158 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +0000159 </Bundle-Activator>
160 <Export-Package>
Felix Meschberger4486f752009-12-14 10:08:27 +0000161 org.apache.felix.scr;version=1.4,
Felix Meschberger21a301e2009-10-07 08:38:18 +0000162 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +0000163 </Export-Package>
164 <Private-Package>
Felix Meschberger9aaf7c42009-07-09 12:34:12 +0000165 org.apache.felix.scr.impl.*,
166 org.osgi.util.tracker
Karl Pauls589e2b32007-07-11 18:29:29 +0000167 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000168 <Import-Package>
Felix Meschberger21a301e2009-10-07 08:38:18 +0000169 <!--
170 The Felix Shell support is optional
171 -->
Felix Meschberger9aaf7c42009-07-09 12:34:12 +0000172 org.apache.felix.shell; resolution:=optional,
Felix Meschberger21a301e2009-10-07 08:38:18 +0000173
174 <!--
Felix Meschberger470ff262009-10-29 13:48:37 +0000175 Framework version 1.4 (from R4.1) is required
176 because we depend on ServiceReference being
177 Comparable and Bundle.getBundleContext method
178 being available.
Felix Meschberger21a301e2009-10-07 08:38:18 +0000179 -->
Felix Meschberger470ff262009-10-29 13:48:37 +0000180 org.osgi.framework;version="[1.4,2)",
Felix Meschberger21a301e2009-10-07 08:38:18 +0000181
182 <!--
Felix Meschberger9c29a382009-10-29 12:28:50 +0000183 LogService is optional but if present the
184 R4.0 version 1.3 is sufficient.
185 -->
186 org.osgi.service.log;version="[1.3,2)";resolution:=optional,
187
188 <!--
Felix Meschberger21a301e2009-10-07 08:38:18 +0000189 Configuration Admin is optional and if it is
190 present, version 1.2 (from R4.0) is enough
191 -->
Felix Meschbergera16f9662009-10-29 11:05:31 +0000192 org.osgi.service.cm;version="[1.2,2)";resolution:=optional,
193
194 <!--
Carsten Ziegelera3159bf2010-01-20 15:04:58 +0000195 Metatype is optional and if it is
196 present, version 1.1 (from R4.1) is enough
197 -->
198 org.osgi.service.metatype;version="[1.1,2)";resolution:=optional,
199
200 <!--
Felix Meschbergera16f9662009-10-29 11:05:31 +0000201 SCR API is required (we also export it) and must
202 be of any 1.1 version, because we implement that
203 exact version. This import is only used if the
204 framework decides to wire the bundle to another
205 API provider.
206 -->
207 org.osgi.service.component;version="[1.1,1.2)"
Felix Meschbergerd25a63d2007-11-23 13:02:49 +0000208 </Import-Package>
Felix Meschberger9aaf7c42009-07-09 12:34:12 +0000209 <Embed-Dependency>
210 kxml2
211 </Embed-Dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +0000212 </instructions>
213 </configuration>
214 </plugin>
Felix Meschberger8c64e852009-07-28 13:48:28 +0000215
216 <!--
217 configure default compilation for Java 1.3 and integration
218 test compilation for Java 5 (since integration tests use
219 Java Annotations for Pax Exam)
220 -->
221 <plugin>
222 <artifactId>maven-compiler-plugin</artifactId>
223 <executions>
224 <execution>
225 <id>test-compile-java5</id>
226 <goals>
227 <goal>testCompile</goal>
228 </goals>
229 <configuration>
230 <source>1.5</source>
231 <target>1.5</target>
232 <testIncludes>
233 <testInclude>**/integration/**</testInclude>
234 </testIncludes>
235 <testExcludes>
236 <testExclude>**/impl/**</testExclude>
237 </testExcludes>
238 </configuration>
239 </execution>
240 </executions>
241 <configuration>
242 <testExcludes>
243 <testExclude>**/integration/**</testExclude>
244 </testExcludes>
245 </configuration>
246 </plugin>
247
248 <!--
249 Exclude Integration tests in (default) unit tests and
250 conversely enable integration tests for integration testing
251 only. Helper classes are completely excluded from testing.
252 -->
253 <plugin>
254 <artifactId>maven-surefire-plugin</artifactId>
255 <executions>
256 <execution>
257 <id>surefire-it</id>
258 <phase>integration-test</phase>
259 <goals>
260 <goal>test</goal>
261 </goals>
262 <configuration>
Felix Meschbergerc71d0e72009-10-12 07:16:08 +0000263 <systemProperties>
264 <property>
265 <name>project.bundle.file</name>
Felix Meschberger80fc0fc2009-10-12 07:51:50 +0000266 <value>${bundle.file.name}</value>
Felix Meschbergerc71d0e72009-10-12 07:16:08 +0000267 </property>
268 </systemProperties>
Felix Meschberger8c64e852009-07-28 13:48:28 +0000269 <excludes>
270 <exclude>**/components/**</exclude>
271 </excludes>
272 <includes>
273 <include>**/integration/*</include>
274 </includes>
275 </configuration>
276 </execution>
277 </executions>
278 <configuration>
279 <excludes>
280 <exclude>**/integration/**</exclude>
281 <exclude>**/components/**</exclude>
282 <exclude>**/instances/**</exclude>
283 <exclude>**/instances2/**</exclude>
284 </excludes>
285 </configuration>
286 </plugin>
Karl Pauls589e2b32007-07-11 18:29:29 +0000287 </plugins>
288 </build>
Felix Meschbergerc71d0e72009-10-12 07:16:08 +0000289
290 <profiles>
291 <!--
292 copy the package such that IDEs may easily use it without
293 setting the system property
294 -->
295 <profile>
296 <id>ide</id>
297 <build>
298 <plugins>
299 <plugin>
300 <artifactId>maven-antrun-plugin</artifactId>
301 <version>1.3</version>
302 <executions>
303 <execution>
304 <id>scr-file-create</id>
305 <phase>package</phase>
306 <goals>
307 <goal>run</goal>
308 </goals>
309 <configuration>
310 <tasks>
Felix Meschbergerdbc09e62009-11-02 22:28:37 +0000311 <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" />
Felix Meschbergerc71d0e72009-10-12 07:16:08 +0000312 </tasks>
313 </configuration>
314 </execution>
315 </executions>
316 </plugin>
317 </plugins>
318 </build>
319 </profile>
320 </profiles>
321
Felix Meschberger8c64e852009-07-28 13:48:28 +0000322 <!-- repositories for Pax Exam and BND tool -->
323 <repositories>
324 <repository>
325 <id>ops4j</id>
326 <name>ops4j</name>
327 <url>http://repository.ops4j.org/maven2</url>
328 <snapshots>
329 <enabled>false</enabled>
330 </snapshots>
331 </repository>
332 <repository>
333 <id>aqute</id>
334 <name>aqute</name>
335 <url>http://www.aqute.biz/repo</url>
336 <snapshots>
337 <enabled>false</enabled>
338 </snapshots>
339 </repository>
340 </repositories>
Karl Pauls589e2b32007-07-11 18:29:29 +0000341</project>