Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 19 | <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 Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | a4ad70a | 2009-04-27 13:12:37 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Felix Meschberger | 3229b52 | 2011-10-11 18:10:07 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 24 | <relativePath/> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Declarative Services</name> |
| 29 | <description> |
Felix Meschberger | 39d6c58 | 2010-05-28 20:28:18 +0000 | [diff] [blame] | 30 | Implementation of the Declarative Services specification 1.1 |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 31 | </description> |
| 32 | <artifactId>org.apache.felix.scr</artifactId> |
Felix Meschberger | 38dd63b | 2010-08-10 12:19:28 +0000 | [diff] [blame] | 33 | <version>1.6.1-SNAPSHOT</version> |
Felix Meschberger | 4753fcb | 2009-04-29 08:46:06 +0000 | [diff] [blame] | 34 | <scm> |
Felix Meschberger | 38dd63b | 2010-08-10 12:19:28 +0000 | [diff] [blame] | 35 | <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 Meschberger | 4753fcb | 2009-04-29 08:46:06 +0000 | [diff] [blame] | 38 | </scm> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 39 | |
| 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 Meschberger | c17fdbd | 2009-10-12 07:25:39 +0000 | [diff] [blame] | 66 | <properties> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 67 | <bundle.build.name> |
| 68 | ${basedir}/target |
| 69 | </bundle.build.name> |
Felix Meschberger | e130b0b | 2009-10-12 07:51:50 +0000 | [diff] [blame] | 70 | <bundle.file.name> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 71 | ${bundle.build.name}/${project.build.finalName}.jar |
Felix Meschberger | e130b0b | 2009-10-12 07:51:50 +0000 | [diff] [blame] | 72 | </bundle.file.name> |
Felix Meschberger | c17fdbd | 2009-10-12 07:25:39 +0000 | [diff] [blame] | 73 | </properties> |
| 74 | |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 75 | |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 76 | <dependencies> |
| 77 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 78 | <groupId>org.osgi</groupId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 79 | <artifactId>org.osgi.core</artifactId> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 80 | <version>4.1.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 81 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 84 | <groupId>org.osgi</groupId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 85 | <artifactId>org.osgi.compendium</artifactId> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 86 | <version>4.2.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 87 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 88 | </dependency> |
| 89 | <dependency> |
Felix Meschberger | 02fd53d | 2011-04-06 15:02:42 +0000 | [diff] [blame] | 90 | <groupId>${project.groupId}</groupId> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 91 | <artifactId>org.apache.felix.shell</artifactId> |
| 92 | <version>1.0.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 93 | <scope>provided</scope> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 94 | <exclusions> |
| 95 | <exclusion> |
| 96 | <groupId>org.apache.felix</groupId> |
| 97 | <artifactId>org.osgi.core</artifactId> |
| 98 | </exclusion> |
| 99 | </exclusions> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 102 | <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 Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 108 | <groupId>net.sf.kxml</groupId> |
| 109 | <artifactId>kxml2</artifactId> |
| 110 | <version>2.2.2</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 111 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 112 | </dependency> |
Felix Meschberger | a4b12bd | 2012-05-31 13:06:30 +0000 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>concurrent</groupId> |
| 115 | <artifactId>concurrent</artifactId> |
| 116 | <version>1.3.4</version> |
| 117 | <scope>provided</scope> |
| 118 | </dependency> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 119 | |
| 120 | <!-- Integration Testing with Pax Exam --> |
| 121 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 122 | <groupId>org.ops4j.pax.exam</groupId> |
| 123 | <artifactId>pax-exam-container-forked</artifactId> |
| 124 | <version>2.4.0.RC1</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 125 | <scope>test</scope> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 126 | </dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 127 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 128 | <dependency> |
| 129 | <groupId>org.ops4j.pax.exam</groupId> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 130 | <artifactId>pax-exam-junit4</artifactId> |
| 131 | <version>2.4.0.RC1</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 132 | <scope>test</scope> |
| 133 | </dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 134 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 135 | <dependency> |
| 136 | <groupId>org.ops4j.pax.exam</groupId> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 137 | <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 Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 149 | <groupId>org.ops4j.pax.url</groupId> |
| 150 | <artifactId>pax-url-wrap</artifactId> |
| 151 | <version>1.4.0.RC1</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 155 | <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> |
| 187 | <groupId>org.junit</groupId> |
| 188 | <artifactId>com.springsource.org.junit</artifactId> |
| 189 | <version>4.9.0</version> |
| 190 | <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 Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 208 | <scope>test</scope> |
| 209 | </dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 210 | </dependencies> |
| 211 | <build> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 212 | <directory>${bundle.build.name}</directory> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 213 | <plugins> |
| 214 | <plugin> |
| 215 | <groupId>org.apache.felix</groupId> |
| 216 | <artifactId>maven-bundle-plugin</artifactId> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 217 | <version>2.3.7</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 218 | <extensions>true</extensions> |
| 219 | <configuration> |
| 220 | <instructions> |
Felix Meschberger | 5ac763d | 2011-02-04 06:24:05 +0000 | [diff] [blame] | 221 | <Bundle-Category>osgi</Bundle-Category> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 222 | <Bundle-SymbolicName> |
Felix Meschberger | 02fd53d | 2011-04-06 15:02:42 +0000 | [diff] [blame] | 223 | ${project.artifactId} |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 224 | </Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 225 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Felix Meschberger | 40d3e60 | 2009-10-11 12:25:14 +0000 | [diff] [blame] | 226 | <Bundle-DocURL> |
| 227 | http://felix.apache.org/site/apache-felix-service-component-runtime.html |
| 228 | </Bundle-DocURL> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 229 | <Bundle-Activator> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 230 | org.apache.felix.scr.impl.Activator |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 231 | </Bundle-Activator> |
| 232 | <Export-Package> |
Felix Meschberger | b8ab893 | 2012-05-17 13:39:34 +0000 | [diff] [blame] | 233 | org.apache.felix.scr;version=1.7, |
Felix Meschberger | 8422a30 | 2012-03-08 05:55:06 +0000 | [diff] [blame] | 234 | org.apache.felix.scr.component;version=1.0; |
| 235 | mandatory:="status"; status="provisional", |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 236 | org.osgi.service.component |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 237 | </Export-Package> |
| 238 | <Private-Package> |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 239 | org.apache.felix.scr.impl.*, |
| 240 | org.osgi.util.tracker |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 241 | </Private-Package> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 242 | <Import-Package> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 243 | <!-- |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 244 | optional import for Gogo annotations |
| 245 | --> |
| 246 | org.apache.felix.service.command;resolution:=optional, |
| 247 | |
| 248 | <!-- |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 249 | The Felix Shell support is optional |
| 250 | --> |
Felix Meschberger | 95f2126 | 2011-11-17 08:24:49 +0000 | [diff] [blame] | 251 | org.apache.felix.shell;provide:=true;resolution:=optional, |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 252 | |
| 253 | <!-- |
Felix Meschberger | 8a8c633 | 2009-10-29 13:48:37 +0000 | [diff] [blame] | 254 | 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 Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 258 | --> |
Felix Meschberger | 8a8c633 | 2009-10-29 13:48:37 +0000 | [diff] [blame] | 259 | org.osgi.framework;version="[1.4,2)", |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 260 | |
| 261 | <!-- |
Felix Meschberger | d854a92 | 2009-10-29 12:28:50 +0000 | [diff] [blame] | 262 | 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 Meschberger | 08aaff6 | 2010-08-05 13:26:31 +0000 | [diff] [blame] | 268 | PackageAdmin is used to find reference types if |
Felix Meschberger | 95f2126 | 2011-11-17 08:24:49 +0000 | [diff] [blame] | 269 | the component's bundle does not import it. |
| 270 | See BindMethod.getParameterClass(Class) for details. |
| 271 | R4.0 version 1.2 is sufficient. |
Felix Meschberger | 08aaff6 | 2010-08-05 13:26:31 +0000 | [diff] [blame] | 272 | --> |
| 273 | org.osgi.service.packageadmin;version="[1.2,2)";resolution:=optional, |
| 274 | |
| 275 | <!-- |
Felix Meschberger | f6066cb | 2009-10-29 11:05:31 +0000 | [diff] [blame] | 276 | SCR API is required (we also export it) and must |
Felix Meschberger | 95f2126 | 2011-11-17 08:24:49 +0000 | [diff] [blame] | 277 | 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 |
| 280 | bundle to another API provider. |
Felix Meschberger | f6066cb | 2009-10-29 11:05:31 +0000 | [diff] [blame] | 281 | --> |
Felix Meschberger | 95f2126 | 2011-11-17 08:24:49 +0000 | [diff] [blame] | 282 | org.osgi.service.component;provide:=true, |
| 283 | |
| 284 | <!-- |
| 285 | SCR Admin API is required (we also export it) and |
| 286 | must be of the same minor version as we export, |
| 287 | because we implement that exact version. This |
| 288 | import is only used if the framework decides to |
| 289 | wire the bundle to another API provider. |
| 290 | --> |
| 291 | org.apache.felix.scr;provide:=true |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 292 | </Import-Package> |
Felix Meschberger | f873dbe | 2011-02-04 10:50:18 +0000 | [diff] [blame] | 293 | <DynamicImport-Package> |
| 294 | <!-- |
| 295 | Configuration Admin version 1.2 (from R4.0) is enough |
| 296 | --> |
| 297 | org.osgi.service.cm;version="[1.2,2)", |
| 298 | |
| 299 | <!-- |
| 300 | Metatype is optional and if it is |
| 301 | present, version 1.1 (from R4.1) is enough |
| 302 | --> |
| 303 | org.osgi.service.metatype;version="[1.1,2)" |
| 304 | </DynamicImport-Package> |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 305 | <Embed-Dependency> |
Felix Meschberger | a4b12bd | 2012-05-31 13:06:30 +0000 | [diff] [blame] | 306 | kxml2;inline=org/kxml2/io/KXmlParser.class|org/xmlpull/v1/XmlPull**, |
| 307 | concurrent;inline=EDU/oswego/cs/dl/util/concurrent/ReentrantLock.class|EDU/oswego/cs/dl/util/concurrent/Sync.class |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 308 | </Embed-Dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 309 | </instructions> |
| 310 | </configuration> |
| 311 | </plugin> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 312 | |
| 313 | <!-- |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 314 | Ensure not using too recent Java API |
| 315 | - for now touch base on Java 1.4 |
| 316 | - Ignore some known Java 5 classes (used in JLock) |
| 317 | --> |
| 318 | <plugin> |
| 319 | <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> |
| 325 | <artifactId>java14</artifactId> |
| 326 | <version>1.0</version> |
| 327 | </signature> |
| 328 | <ignores> |
| 329 | <ignore>java.util.concurrent.locks.ReentrantLock</ignore> |
| 330 | <ignore>java.util.concurrent.TimeUnit</ignore> |
| 331 | </ignores> |
| 332 | </configuration> |
| 333 | <executions> |
| 334 | <execution> |
| 335 | <phase>test</phase> |
| 336 | <goals> |
| 337 | <goal>check</goal> |
| 338 | </goals> |
| 339 | </execution> |
| 340 | </executions> |
| 341 | </plugin> |
| 342 | |
| 343 | <!-- |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 344 | Configure default compilation for Java 1.3 and integration |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 345 | test compilation for Java 5 (since integration tests use |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 346 | Java Annotations for Pax Exam). |
| 347 | Also configure the compilation of the Gogo Command class |
| 348 | (using Java 5 annotations) with Java 5 target. |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 349 | --> |
| 350 | <plugin> |
| 351 | <artifactId>maven-compiler-plugin</artifactId> |
| 352 | <executions> |
| 353 | <execution> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 354 | <id>compile-java5</id> |
| 355 | <goals> |
| 356 | <goal>compile</goal> |
| 357 | </goals> |
| 358 | <configuration> |
| 359 | <source>1.5</source> |
| 360 | <target>1.5</target> |
| 361 | <excludes> |
| 362 | <exclude>dummy-to-overwrite-global-config</exclude> |
| 363 | </excludes> |
| 364 | <includes> |
| 365 | <include>**/ScrGogoCommand.java</include> |
| 366 | </includes> |
| 367 | </configuration> |
| 368 | </execution> |
| 369 | <execution> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 370 | <id>test-compile-java5</id> |
| 371 | <goals> |
| 372 | <goal>testCompile</goal> |
| 373 | </goals> |
| 374 | <configuration> |
| 375 | <source>1.5</source> |
| 376 | <target>1.5</target> |
| 377 | <testIncludes> |
| 378 | <testInclude>**/integration/**</testInclude> |
| 379 | </testIncludes> |
| 380 | <testExcludes> |
| 381 | <testExclude>**/impl/**</testExclude> |
| 382 | </testExcludes> |
| 383 | </configuration> |
| 384 | </execution> |
| 385 | </executions> |
| 386 | <configuration> |
| 387 | <testExcludes> |
| 388 | <testExclude>**/integration/**</testExclude> |
| 389 | </testExcludes> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 390 | <excludes> |
| 391 | <exclude>**/ScrGogoCommand.java</exclude> |
| 392 | </excludes> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 393 | </configuration> |
| 394 | </plugin> |
| 395 | |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 396 | <!-- plain unit tests --> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 397 | <plugin> |
| 398 | <artifactId>maven-surefire-plugin</artifactId> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 399 | <configuration> |
| 400 | <excludes> |
| 401 | <exclude>**/integration/**</exclude> |
| 402 | <exclude>**/components/**</exclude> |
| 403 | <exclude>**/instances/**</exclude> |
| 404 | <exclude>**/instances2/**</exclude> |
| 405 | </excludes> |
| 406 | </configuration> |
| 407 | </plugin> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 408 | <!-- integration tests run with pax-exam --> |
| 409 | <plugin> |
| 410 | <artifactId>maven-failsafe-plugin</artifactId> |
| 411 | <version>2.12</version> |
| 412 | <executions> |
| 413 | <execution> |
| 414 | <goals> |
| 415 | <goal>integration-test</goal> |
| 416 | <goal>verify</goal> |
| 417 | </goals> |
| 418 | </execution> |
| 419 | </executions> |
| 420 | <configuration> |
| 421 | <systemProperties> |
| 422 | <property> |
| 423 | <name>project.bundle.file</name> |
| 424 | <value>${bundle.file.name}</value> |
| 425 | </property> |
| 426 | </systemProperties> |
| 427 | <excludes> |
| 428 | <exclude>**/components/**</exclude> |
| 429 | </excludes> |
| 430 | <includes> |
Felix Meschberger | 8422a30 | 2012-03-08 05:55:06 +0000 | [diff] [blame] | 431 | <include>**/integration/**</include> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 432 | </includes> |
| 433 | </configuration> |
| 434 | </plugin> |
Felix Meschberger | df92266 | 2011-02-04 23:09:29 +0000 | [diff] [blame] | 435 | <plugin> |
| 436 | <groupId>org.apache.maven.plugins</groupId> |
| 437 | <artifactId>maven-javadoc-plugin</artifactId> |
| 438 | <configuration> |
| 439 | <encoding>${project.build.sourceEncoding}</encoding> |
| 440 | <excludePackageNames>*.impl</excludePackageNames> |
| 441 | </configuration> |
| 442 | </plugin> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 443 | </plugins> |
| 444 | </build> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 445 | |
| 446 | <profiles> |
| 447 | <!-- |
| 448 | copy the package such that IDEs may easily use it without |
| 449 | setting the system property |
| 450 | --> |
| 451 | <profile> |
| 452 | <id>ide</id> |
| 453 | <build> |
| 454 | <plugins> |
| 455 | <plugin> |
| 456 | <artifactId>maven-antrun-plugin</artifactId> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 457 | <executions> |
| 458 | <execution> |
| 459 | <id>scr-file-create</id> |
| 460 | <phase>package</phase> |
| 461 | <goals> |
| 462 | <goal>run</goal> |
| 463 | </goals> |
| 464 | <configuration> |
Felix Meschberger | 3229b52 | 2011-10-11 18:10:07 +0000 | [diff] [blame] | 465 | <target> |
Felix Meschberger | 9afc4d7 | 2009-11-02 22:28:37 +0000 | [diff] [blame] | 466 | <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" /> |
Felix Meschberger | 3229b52 | 2011-10-11 18:10:07 +0000 | [diff] [blame] | 467 | </target> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 468 | </configuration> |
| 469 | </execution> |
| 470 | </executions> |
| 471 | </plugin> |
| 472 | </plugins> |
| 473 | </build> |
| 474 | </profile> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 475 | |
| 476 | <profile> |
| 477 | <id>felix</id> |
| 478 | <activation> |
| 479 | <activeByDefault>true</activeByDefault> |
| 480 | </activation> |
| 481 | <dependencies> |
| 482 | <dependency> |
| 483 | <groupId>org.apache.felix</groupId> |
| 484 | <artifactId>org.apache.felix.framework</artifactId> |
| 485 | <version>4.0.2</version> |
| 486 | <scope>test</scope> |
| 487 | </dependency> |
| 488 | </dependencies> |
| 489 | </profile> |
| 490 | <profile> |
| 491 | <id>equinox</id> |
| 492 | <dependencies> |
| 493 | <dependency> |
| 494 | <groupId>org.eclipse</groupId> |
| 495 | <artifactId>osgi</artifactId> |
| 496 | <version>3.7.1.R37x_v20110808-1106</version> |
| 497 | <scope>test</scope> |
| 498 | </dependency> |
| 499 | </dependencies> |
| 500 | </profile> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 501 | </profiles> |
| 502 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 503 | <repositories> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 504 | <!-- springsource junit wrapping --> |
| 505 | <repository> |
| 506 | <id>com.springsource.repository.bundles.external</id> |
| 507 | <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
| 508 | <url>http://repository.springsource.com/maven/bundles/external</url> |
| 509 | </repository> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 510 | </repositories> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 511 | </project> |