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 | c1ee569 | 2012-11-07 11:38:42 +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> |
A. J. David Bosschaert | 70f1853 | 2015-02-05 14:30:32 +0000 | [diff] [blame] | 30 | Implementation of the Declarative Services specification 1.3 |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 31 | </description> |
| 32 | <artifactId>org.apache.felix.scr</artifactId> |
Carsten Ziegeler | 83c499f | 2015-02-06 08:36:11 +0000 | [diff] [blame] | 33 | <version>1.8.3-SNAPSHOT</version> |
Felix Meschberger | 4753fcb | 2009-04-29 08:46:06 +0000 | [diff] [blame] | 34 | <scm> |
David Jencks | 7038191 | 2014-01-18 03:37:24 +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> |
David Jencks | c03f8e5 | 2013-10-29 16:20:41 +0000 | [diff] [blame] | 73 | <felix.ca.version>1.8.0</felix.ca.version> |
Felix Meschberger | c17fdbd | 2009-10-12 07:25:39 +0000 | [diff] [blame] | 74 | </properties> |
| 75 | |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 76 | |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 77 | <dependencies> |
| 78 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 79 | <groupId>org.osgi</groupId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 80 | <artifactId>org.osgi.core</artifactId> |
David Jencks | 8a1f6af | 2014-07-31 19:28:30 +0000 | [diff] [blame] | 81 | <version>6.0.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 82 | <scope>provided</scope> |
David Jencks | 8a1f6af | 2014-07-31 19:28:30 +0000 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.osgi</groupId> |
| 86 | <artifactId>org.osgi.annotation</artifactId> |
| 87 | <version>6.0.0</version> |
| 88 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 91 | <groupId>org.osgi</groupId> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 92 | <artifactId>org.osgi.enterprise</artifactId> |
| 93 | <version>5.0.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 94 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 95 | </dependency> |
| 96 | <dependency> |
Guillaume Nodet | d767b21 | 2013-08-02 13:22:32 +0000 | [diff] [blame] | 97 | <groupId>org.apache.felix</groupId> |
| 98 | <artifactId>org.apache.felix.utils</artifactId> |
David Jencks | 725a6ab | 2014-01-18 03:19:32 +0000 | [diff] [blame] | 99 | <version>1.4.2</version> |
Guillaume Nodet | d767b21 | 2013-08-02 13:22:32 +0000 | [diff] [blame] | 100 | <scope>provided</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
Felix Meschberger | 02fd53d | 2011-04-06 15:02:42 +0000 | [diff] [blame] | 103 | <groupId>${project.groupId}</groupId> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 104 | <artifactId>org.apache.felix.shell</artifactId> |
| 105 | <version>1.0.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 106 | <scope>provided</scope> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 107 | <exclusions> |
| 108 | <exclusion> |
| 109 | <groupId>org.apache.felix</groupId> |
| 110 | <artifactId>org.osgi.core</artifactId> |
| 111 | </exclusion> |
| 112 | </exclusions> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 117 | <version>0.6.1</version> |
| 118 | <scope>provided</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 121 | <groupId>net.sf.kxml</groupId> |
| 122 | <artifactId>kxml2</artifactId> |
| 123 | <version>2.2.2</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 124 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 125 | </dependency> |
David Jencks | dd6e9d4 | 2012-09-11 23:01:29 +0000 | [diff] [blame] | 126 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 127 | <!-- Integration Testing with Pax Exam --> |
| 128 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 129 | <groupId>org.ops4j.pax.exam</groupId> |
| 130 | <artifactId>pax-exam-container-forked</artifactId> |
David Jencks | b5aa87c | 2013-09-11 21:13:44 +0000 | [diff] [blame] | 131 | <version>3.2.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 132 | <scope>test</scope> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 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-junit4</artifactId> |
David Jencks | b5aa87c | 2013-09-11 21:13:44 +0000 | [diff] [blame] | 138 | <version>3.2.0</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 139 | <scope>test</scope> |
| 140 | </dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 141 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 142 | <dependency> |
| 143 | <groupId>org.ops4j.pax.exam</groupId> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 144 | <artifactId>pax-exam-link-mvn</artifactId> |
David Jencks | b5aa87c | 2013-09-11 21:13:44 +0000 | [diff] [blame] | 145 | <version>3.2.0</version> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | |
| 149 | <dependency> |
| 150 | <groupId>org.ops4j.pax.url</groupId> |
| 151 | <artifactId>pax-url-aether</artifactId> |
| 152 | <version>1.4.0.RC1</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 153 | <scope>test</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 156 | <groupId>org.ops4j.pax.url</groupId> |
| 157 | <artifactId>pax-url-wrap</artifactId> |
| 158 | <version>1.4.0.RC1</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 159 | <scope>test</scope> |
| 160 | </dependency> |
| 161 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 162 | <groupId>org.ops4j.pax.logging</groupId> |
| 163 | <artifactId>pax-logging-api</artifactId> |
| 164 | <version>1.6.3</version> |
| 165 | <scope>test</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.ops4j.pax.logging</groupId> |
| 169 | <artifactId>pax-logging-service</artifactId> |
| 170 | <version>1.6.3</version> |
| 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | |
| 174 | <dependency> |
| 175 | <groupId>ch.qos.logback</groupId> |
| 176 | <artifactId>logback-core</artifactId> |
| 177 | <version>0.9.29</version> |
| 178 | <scope>test</scope> |
| 179 | </dependency> |
| 180 | |
| 181 | <dependency> |
| 182 | <groupId>ch.qos.logback</groupId> |
| 183 | <artifactId>logback-classic</artifactId> |
| 184 | <version>0.9.29</version> |
| 185 | <scope>test</scope> |
| 186 | </dependency> |
| 187 | <dependency> |
David Jencks | c03f8e5 | 2013-10-29 16:20:41 +0000 | [diff] [blame] | 188 | <groupId>org.apache.felix</groupId> |
| 189 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 190 | <version>1.8.0</version> |
| 191 | <scope>test</scope> |
| 192 | </dependency> |
| 193 | <dependency> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 194 | <groupId>org.apache.geronimo.specs</groupId> |
| 195 | <artifactId>geronimo-atinject_1.0_spec</artifactId> |
| 196 | <version>1.0</version> |
| 197 | <scope>test</scope> |
| 198 | </dependency> |
| 199 | <dependency> |
David Jencks | 5143255 | 2012-06-05 01:02:17 +0000 | [diff] [blame] | 200 | <groupId>org.apache.servicemix.bundles</groupId> |
| 201 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
David Jencks | 5ccbba2 | 2012-10-19 06:52:50 +0000 | [diff] [blame] | 202 | <version>4.9_2</version> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 203 | <scope>test</scope> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>org.ops4j.base</groupId> |
| 207 | <artifactId>ops4j-base-lang</artifactId> |
| 208 | <version>1.2.3</version> |
| 209 | <scope>provided</scope> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>org.ops4j.base</groupId> |
| 213 | <artifactId>ops4j-base-net</artifactId> |
| 214 | <version>1.2.3</version> |
| 215 | <scope>provided</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>org.ops4j.pax.tinybundles</groupId> |
| 219 | <artifactId>tinybundles</artifactId> |
| 220 | <version>1.0.0</version> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 221 | <scope>test</scope> |
| 222 | </dependency> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 223 | <dependency> |
| 224 | <groupId>org.codehaus.mojo</groupId> |
| 225 | <artifactId>animal-sniffer-annotations</artifactId> |
David Jencks | ddd9094 | 2013-04-06 06:52:25 +0000 | [diff] [blame] | 226 | <version>1.9</version> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 227 | <scope>compile</scope> |
| 228 | </dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 229 | </dependencies> |
| 230 | <build> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 231 | <directory>${bundle.build.name}</directory> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 232 | <plugins> |
| 233 | <plugin> |
| 234 | <groupId>org.apache.felix</groupId> |
| 235 | <artifactId>maven-bundle-plugin</artifactId> |
David Jencks | 29b0cc1 | 2015-03-23 23:58:13 +0000 | [diff] [blame] | 236 | <version>2.5.3</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 237 | <extensions>true</extensions> |
| 238 | <configuration> |
| 239 | <instructions> |
David Jencks | e8e89b6 | 2014-06-15 01:10:29 +0000 | [diff] [blame] | 240 | <_include>-bnd.bnd</_include> |
David Jencks | 89cc89f | 2014-08-07 19:54:45 +0000 | [diff] [blame] | 241 | </instructions> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 242 | </configuration> |
| 243 | </plugin> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 244 | |
| 245 | <!-- |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 246 | Ensure not using too recent Java API |
Felix Meschberger | d1636bf | 2012-11-07 11:08:20 +0000 | [diff] [blame] | 247 | - Ensure Java 5 API |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 248 | --> |
David Jencks | 08a463d | 2013-01-22 19:19:08 +0000 | [diff] [blame] | 249 | <plugin> |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 250 | <groupId>org.codehaus.mojo</groupId> |
| 251 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 252 | <version>1.7</version> |
| 253 | <configuration> |
| 254 | <signature> |
| 255 | <groupId>org.codehaus.mojo.signature</groupId> |
Felix Meschberger | d1636bf | 2012-11-07 11:08:20 +0000 | [diff] [blame] | 256 | <artifactId>java15</artifactId> |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 257 | <version>1.0</version> |
| 258 | </signature> |
Felix Meschberger | 47a0c6e | 2012-05-31 13:48:16 +0000 | [diff] [blame] | 259 | </configuration> |
| 260 | <executions> |
| 261 | <execution> |
| 262 | <phase>test</phase> |
| 263 | <goals> |
| 264 | <goal>check</goal> |
| 265 | </goals> |
| 266 | </execution> |
| 267 | </executions> |
| 268 | </plugin> |
| 269 | |
| 270 | <!-- |
Felix Meschberger | d1636bf | 2012-11-07 11:08:20 +0000 | [diff] [blame] | 271 | Configure default compilation for Java 5 |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 272 | --> |
| 273 | <plugin> |
| 274 | <artifactId>maven-compiler-plugin</artifactId> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 275 | <configuration> |
David Jencks | 7978fb9 | 2012-10-12 00:40:18 +0000 | [diff] [blame] | 276 | <source>1.5</source> |
| 277 | <target>1.5</target> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 278 | </configuration> |
| 279 | </plugin> |
| 280 | |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 281 | <!-- plain unit tests --> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 282 | <plugin> |
| 283 | <artifactId>maven-surefire-plugin</artifactId> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 284 | <configuration> |
| 285 | <excludes> |
| 286 | <exclude>**/integration/**</exclude> |
| 287 | <exclude>**/components/**</exclude> |
| 288 | <exclude>**/instances/**</exclude> |
| 289 | <exclude>**/instances2/**</exclude> |
| 290 | </excludes> |
| 291 | </configuration> |
| 292 | </plugin> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 293 | <!-- integration tests run with pax-exam --> |
| 294 | <plugin> |
| 295 | <artifactId>maven-failsafe-plugin</artifactId> |
| 296 | <version>2.12</version> |
| 297 | <executions> |
| 298 | <execution> |
| 299 | <goals> |
| 300 | <goal>integration-test</goal> |
| 301 | <goal>verify</goal> |
| 302 | </goals> |
| 303 | </execution> |
| 304 | </executions> |
| 305 | <configuration> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 306 | <systemPropertyVariables> |
| 307 | <project.bundle.file>${bundle.file.name}</project.bundle.file> |
| 308 | <felix.ca.version>${felix.ca.version}</felix.ca.version> |
| 309 | </systemPropertyVariables> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 310 | <excludes> |
| 311 | <exclude>**/components/**</exclude> |
| 312 | </excludes> |
| 313 | <includes> |
David Jencks | 91128a4 | 2013-04-22 06:44:24 +0000 | [diff] [blame] | 314 | <include>**/integration/**</include> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 315 | </includes> |
| 316 | </configuration> |
| 317 | </plugin> |
Felix Meschberger | df92266 | 2011-02-04 23:09:29 +0000 | [diff] [blame] | 318 | <plugin> |
| 319 | <groupId>org.apache.maven.plugins</groupId> |
| 320 | <artifactId>maven-javadoc-plugin</artifactId> |
| 321 | <configuration> |
| 322 | <encoding>${project.build.sourceEncoding}</encoding> |
| 323 | <excludePackageNames>*.impl</excludePackageNames> |
| 324 | </configuration> |
| 325 | </plugin> |
Carsten Ziegeler | b5a09b3 | 2015-02-16 11:02:20 +0000 | [diff] [blame] | 326 | <!-- Disable for now |
David Jencks | cb9f942 | 2013-02-04 02:16:11 +0000 | [diff] [blame] | 327 | <plugin> |
| 328 | <groupId>org.apache.aries.versioning</groupId> |
| 329 | <artifactId>org.apache.aries.versioning.plugin</artifactId> |
| 330 | <version>0.1.0</version> |
| 331 | <executions> |
| 332 | <execution> |
| 333 | <id>default-verify</id> |
| 334 | <phase>verify</phase> |
| 335 | <goals> |
| 336 | <goal>version-check</goal> |
| 337 | </goals> |
| 338 | <configuration> |
| 339 | <oldArtifact>org.apache.felix:org.apache.felix.scr:1.6.2</oldArtifact> |
| 340 | </configuration> |
| 341 | </execution> |
| 342 | </executions> |
| 343 | </plugin> |
Carsten Ziegeler | b5a09b3 | 2015-02-16 11:02:20 +0000 | [diff] [blame] | 344 | --> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 345 | </plugins> |
| 346 | </build> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 347 | |
David Jencks | 081fa83 | 2013-05-09 05:50:38 +0000 | [diff] [blame] | 348 | <reporting> |
| 349 | <plugins> |
| 350 | <plugin> |
| 351 | <groupId>org.codehaus.mojo</groupId> |
| 352 | <artifactId>findbugs-maven-plugin</artifactId> |
| 353 | <version>2.5.2</version> |
| 354 | <configuration> |
| 355 | <effort>Max</effort> |
| 356 | <threshold>Low</threshold> |
| 357 | </configuration> |
| 358 | </plugin> |
| 359 | </plugins> |
| 360 | </reporting> |
| 361 | |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 362 | <profiles> |
| 363 | <!-- |
| 364 | copy the package such that IDEs may easily use it without |
| 365 | setting the system property |
| 366 | --> |
| 367 | <profile> |
| 368 | <id>ide</id> |
| 369 | <build> |
| 370 | <plugins> |
| 371 | <plugin> |
| 372 | <artifactId>maven-antrun-plugin</artifactId> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 373 | <executions> |
| 374 | <execution> |
| 375 | <id>scr-file-create</id> |
| 376 | <phase>package</phase> |
| 377 | <goals> |
| 378 | <goal>run</goal> |
| 379 | </goals> |
| 380 | <configuration> |
Felix Meschberger | 3229b52 | 2011-10-11 18:10:07 +0000 | [diff] [blame] | 381 | <target> |
Felix Meschberger | 9afc4d7 | 2009-11-02 22:28:37 +0000 | [diff] [blame] | 382 | <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] | 383 | </target> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 384 | </configuration> |
| 385 | </execution> |
| 386 | </executions> |
| 387 | </plugin> |
| 388 | </plugins> |
| 389 | </build> |
| 390 | </profile> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 391 | |
| 392 | <profile> |
| 393 | <id>felix</id> |
| 394 | <activation> |
| 395 | <activeByDefault>true</activeByDefault> |
| 396 | </activation> |
| 397 | <dependencies> |
| 398 | <dependency> |
| 399 | <groupId>org.apache.felix</groupId> |
| 400 | <artifactId>org.apache.felix.framework</artifactId> |
David Jencks | 9a212cb | 2015-03-16 15:10:46 +0000 | [diff] [blame] | 401 | <version>4.6.0</version> |
| 402 | <scope>test</scope> |
| 403 | </dependency> |
| 404 | </dependencies> |
| 405 | </profile> |
| 406 | <profile> |
| 407 | <id>felix-R5</id> |
| 408 | <dependencies> |
| 409 | <dependency> |
| 410 | <groupId>org.apache.felix</groupId> |
| 411 | <artifactId>org.apache.felix.framework</artifactId> |
Carsten Ziegeler | 4aa7b16 | 2015-02-11 11:25:09 +0000 | [diff] [blame] | 412 | <version>4.0.3</version> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 413 | <scope>test</scope> |
| 414 | </dependency> |
| 415 | </dependencies> |
| 416 | </profile> |
| 417 | <profile> |
| 418 | <id>equinox</id> |
| 419 | <dependencies> |
| 420 | <dependency> |
| 421 | <groupId>org.eclipse</groupId> |
David Jencks | 588b3d3 | 2013-02-10 07:43:27 +0000 | [diff] [blame] | 422 | <artifactId>org.eclipse.osgi</artifactId> |
| 423 | <version>3.8.0.v20120529-1548</version> |
Felix Meschberger | 4f43c91 | 2012-03-08 04:37:56 +0000 | [diff] [blame] | 424 | <scope>test</scope> |
| 425 | </dependency> |
| 426 | </dependencies> |
| 427 | </profile> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 428 | <profile> |
David Jencks | c03f8e5 | 2013-10-29 16:20:41 +0000 | [diff] [blame] | 429 | <!-- use to test with R4 ca, without change count, targetetPids, location changed event --> |
| 430 | <!-- remember you need to specify all profiles using this, e.g. -PcaR4,felix --> |
| 431 | <id>caR4</id> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 432 | <properties> |
David Jencks | c03f8e5 | 2013-10-29 16:20:41 +0000 | [diff] [blame] | 433 | <felix.ca.version>1.0.10</felix.ca.version> |
David Jencks | fbf5f8e | 2013-03-06 02:51:10 +0000 | [diff] [blame] | 434 | </properties> |
| 435 | </profile> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 436 | </profiles> |
| 437 | |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 438 | </project> |