Clement Escoffier | e698656 | 2013-02-22 18:55:31 +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 | --> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 25 | <relativePath>../../../pom/pom.xml</relativePath> |
| 26 | </parent> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 27 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <artifactId>org.apache.felix.ipojo.manipulator.manipulator-it</artifactId> |
Clement Escoffier | 6658d50 | 2013-06-16 06:27:29 +0000 | [diff] [blame] | 30 | <version>1.10.2-SNAPSHOT</version> |
Clement Escoffier | a00b642 | 2013-02-26 18:35:04 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Manipulator ~ Integration Tests</name> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 32 | <packaging>pom</packaging> |
| 33 | |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 34 | <properties> |
| 35 | <!-- Tests are enabled only when the 'test' profile is activated --> |
| 36 | <skipTestExecution>true</skipTestExecution> |
| 37 | |
| 38 | <exam.version>3.0.0</exam.version> |
| 39 | <url.version>1.5.1</url.version> |
| 40 | |
| 41 | <felix.version>4.2.0</felix.version> |
| 42 | <equinox.version>3.8.1.v20120830-144521</equinox.version> |
| 43 | <knoperflerfish.version>5.3.3</knoperflerfish.version> |
| 44 | </properties> |
| 45 | |
| 46 | <modules> |
| 47 | <module>ipojo-manipulator-manipulation-test</module> |
| 48 | <module>ipojo-manipulator-creation-test</module> |
| 49 | <module>ipojo-manipulator-manipulation-metadata-test</module> |
| 50 | <module>online-manipulator-it</module> |
| 51 | </modules> |
| 52 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 53 | <build> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 54 | <plugins> |
| 55 | <plugin> |
| 56 | <groupId>org.apache.maven.plugins</groupId> |
| 57 | <artifactId>maven-compiler-plugin</artifactId> |
| 58 | <version>2.5.1</version> |
| 59 | <configuration> |
| 60 | <source>1.6</source> |
| 61 | <target>1.6</target> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | |
| 65 | <plugin> |
| 66 | <groupId>org.apache.servicemix.tooling</groupId> |
| 67 | <artifactId>depends-maven-plugin</artifactId> |
| 68 | <version>1.2</version> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <id>generate-config</id> |
| 72 | <goals> |
| 73 | <goal>generate-depends-file</goal> |
| 74 | </goals> |
| 75 | </execution> |
| 76 | </executions> |
| 77 | </plugin> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 78 | |
| 79 | <plugin> |
| 80 | <groupId>org.apache.rat</groupId> |
| 81 | <artifactId>apache-rat-plugin</artifactId> |
| 82 | <executions> |
| 83 | <execution> |
| 84 | <phase>verify</phase> |
| 85 | <goals> |
| 86 | <goal>check</goal> |
| 87 | </goals> |
| 88 | </execution> |
| 89 | </executions> |
| 90 | <configuration> |
| 91 | <!-- check src only (except remote resources additions) --> |
| 92 | <includes> |
| 93 | <include>src/**</include> |
| 94 | </includes> |
| 95 | <excludes> |
| 96 | <exclude>src/main/appended-resources/**</exclude> |
| 97 | <exclude>**/*.iml</exclude> |
Clement Escoffier | 3366069 | 2013-04-12 05:48:29 +0000 | [diff] [blame] | 98 | <exclude>src/it/**/target/**</exclude> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 99 | </excludes> |
| 100 | </configuration> |
| 101 | </plugin> |
Clement Escoffier | 2c47f5f | 2013-06-04 19:46:29 +0000 | [diff] [blame] | 102 | |
| 103 | <plugin> |
| 104 | <artifactId>maven-deploy-plugin</artifactId> |
| 105 | <version>2.4</version> |
| 106 | <configuration> |
| 107 | <skip>true</skip> |
| 108 | </configuration> |
| 109 | </plugin> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 110 | |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-surefire-plugin</artifactId> |
| 114 | <version>2.15</version> |
| 115 | <configuration> |
| 116 | <skipTests>${skipTestExecution}</skipTests> |
| 117 | <systemPropertyVariables> |
| 118 | <!-- TIME_FACTOR can be set from the command line with -DTIME_FACTOR=9--> |
| 119 | <TIME_FACTOR>${TIME_FACTOR}</TIME_FACTOR> |
| 120 | </systemPropertyVariables> |
| 121 | </configuration> |
| 122 | </plugin> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 123 | </plugins> |
| 124 | |
| 125 | </build> |
| 126 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 127 | <dependencies> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 128 | <dependency> |
| 129 | <groupId>org.ops4j.pax.exam</groupId> |
| 130 | <artifactId>pax-exam-container-native</artifactId> |
| 131 | <version>${exam.version}</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | |
| 135 | <dependency> |
| 136 | <groupId>org.ops4j.pax.exam</groupId> |
| 137 | <artifactId>pax-exam-junit4</artifactId> |
| 138 | <version>${exam.version}</version> |
| 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | |
| 142 | <dependency> |
| 143 | <groupId>org.ops4j.pax.exam</groupId> |
| 144 | <artifactId>pax-exam-link-mvn</artifactId> |
| 145 | <version>${exam.version}</version> |
| 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | |
| 149 | <dependency> |
| 150 | <groupId>org.ops4j.pax.url</groupId> |
| 151 | <artifactId>pax-url-aether</artifactId> |
| 152 | <version>${url.version}</version> |
| 153 | <scope>test</scope> |
| 154 | </dependency> |
| 155 | |
| 156 | <dependency> |
| 157 | <groupId>org.apache.felix</groupId> |
| 158 | <artifactId>org.apache.felix.framework</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 159 | <version>${felix.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | |
| 163 | <dependency> |
| 164 | <groupId>ch.qos.logback</groupId> |
| 165 | <artifactId>logback-core</artifactId> |
| 166 | <version>0.9.6</version> |
| 167 | <scope>test</scope> |
| 168 | </dependency> |
| 169 | |
| 170 | <dependency> |
| 171 | <groupId>ch.qos.logback</groupId> |
| 172 | <artifactId>logback-classic</artifactId> |
| 173 | <version>0.9.6</version> |
| 174 | <scope>test</scope> |
| 175 | </dependency> |
| 176 | |
| 177 | |
| 178 | <dependency> |
| 179 | <groupId>junit</groupId> |
| 180 | <artifactId>junit</artifactId> |
| 181 | <version>4.9</version> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
| 184 | |
| 185 | <dependency> |
| 186 | <groupId>org.mockito</groupId> |
| 187 | <artifactId>mockito-all</artifactId> |
| 188 | <version>1.9.5</version> |
| 189 | </dependency> |
| 190 | |
| 191 | <dependency> |
| 192 | <groupId>org.ops4j.pax.tinybundles</groupId> |
| 193 | <artifactId>tinybundles</artifactId> |
| 194 | <version>1.0.0</version> |
| 195 | </dependency> |
| 196 | |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 197 | <!-- The tiny bundle extension must be before the manipulator version |
| 198 | to use the right version of the manipulator --> |
| 199 | <dependency> |
| 200 | <groupId>org.ow2.chameleon.testing</groupId> |
| 201 | <artifactId>tinybundles-ipojo</artifactId> |
| 202 | <version>0.3.0</version> |
Clement Escoffier | fe1775d | 2013-05-13 12:54:07 +0000 | [diff] [blame] | 203 | <scope>test</scope> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 204 | </dependency> |
| 205 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 206 | <!-- Define the tested version --> |
| 207 | <dependency> |
| 208 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 209 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Guillaume Sauthier | ca551ba | 2013-06-03 17:08:57 +0000 | [diff] [blame] | 210 | <version>${project.version}</version> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 211 | </dependency> |
| 212 | |
| 213 | <dependency> |
| 214 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 215 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | d569e5d | 2013-06-16 06:26:48 +0000 | [diff] [blame] | 216 | <version>1.10.0</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 217 | </dependency> |
| 218 | |
Clement Escoffier | 4f2609b | 2013-03-20 07:35:37 +0000 | [diff] [blame] | 219 | <dependency> |
| 220 | <groupId>org.apache.felix</groupId> |
| 221 | <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId> |
Guillaume Sauthier | ca551ba | 2013-06-03 17:08:57 +0000 | [diff] [blame] | 222 | <version>${project.version}</version> |
Clement Escoffier | 4f2609b | 2013-03-20 07:35:37 +0000 | [diff] [blame] | 223 | </dependency> |
| 224 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 225 | <!-- End of tested version --> |
| 226 | |
| 227 | <dependency> |
| 228 | <groupId>org.apache.felix</groupId> |
| 229 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 230 | <version>1.6.0</version> |
| 231 | <scope>test</scope> |
| 232 | </dependency> |
| 233 | |
| 234 | <dependency> |
| 235 | <groupId>commons-io</groupId> |
| 236 | <artifactId>commons-io</artifactId> |
| 237 | <version>2.4</version> |
| 238 | </dependency> |
| 239 | |
| 240 | <dependency> |
| 241 | <groupId>org.ow2.chameleon.testing</groupId> |
| 242 | <artifactId>osgi-helpers</artifactId> |
Clement Escoffier | 90ccbb3 | 2013-06-21 13:43:42 +0000 | [diff] [blame^] | 243 | <version>0.6.2-SNAPSHOT</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 244 | <scope>test</scope> |
| 245 | </dependency> |
| 246 | |
| 247 | <dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 248 | <groupId>org.apache.felix</groupId> |
| 249 | <artifactId>org.apache.felix.log</artifactId> |
| 250 | <version>1.0.1</version> |
| 251 | </dependency> |
| 252 | |
| 253 | <dependency> |
| 254 | <groupId>org.ops4j.pax.url</groupId> |
| 255 | <artifactId>pax-url-wrap</artifactId> |
| 256 | <version>1.5.2</version> |
| 257 | </dependency> |
| 258 | </dependencies> |
| 259 | |
| 260 | <profiles> |
| 261 | <profile> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 262 | <id>knopflerfish</id> |
| 263 | <activation> |
| 264 | <activeByDefault>false</activeByDefault> |
| 265 | <property> |
| 266 | <name>pax.exam.framework</name> |
| 267 | <value>knopflerfish</value> |
| 268 | </property> |
| 269 | </activation> |
| 270 | <properties> |
| 271 | <pax.exam.framework>knopflerfish</pax.exam.framework> |
| 272 | </properties> |
| 273 | <repositories> |
| 274 | <repository> |
| 275 | <id>knopflerfish-releases</id> |
| 276 | <url>http://www.knopflerfish.org/maven2</url> |
| 277 | </repository> |
| 278 | </repositories> |
| 279 | <dependencies> |
| 280 | <dependency> |
| 281 | <groupId>org.knopflerfish</groupId> |
| 282 | <artifactId>framework</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 283 | <version>${knoperflerfish.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 284 | <scope>test</scope> |
| 285 | </dependency> |
| 286 | </dependencies> |
| 287 | </profile> |
| 288 | |
| 289 | <profile> |
| 290 | <id>equinox</id> |
| 291 | <activation> |
| 292 | <activeByDefault>false</activeByDefault> |
| 293 | <property> |
| 294 | <name>pax.exam.framework</name> |
| 295 | <value>equinox</value> |
| 296 | </property> |
| 297 | </activation> |
| 298 | <properties> |
| 299 | <pax.exam.framework>equinox</pax.exam.framework> |
| 300 | </properties> |
| 301 | <dependencies> |
| 302 | <dependency> |
| 303 | <groupId>org.eclipse.tycho</groupId> |
| 304 | <artifactId>org.eclipse.osgi</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 305 | <version>${equinox.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 306 | <scope>test</scope> |
| 307 | </dependency> |
| 308 | </dependencies> |
| 309 | </profile> |
| 310 | |
| 311 | <profile> |
| 312 | <id>felix</id> |
| 313 | <activation> |
| 314 | <activeByDefault>false</activeByDefault> |
| 315 | <property> |
| 316 | <name>pax.exam.framework</name> |
| 317 | <value>felix</value> |
| 318 | </property> |
| 319 | </activation> |
| 320 | <properties> |
| 321 | <pax.exam.framework>felix</pax.exam.framework> |
| 322 | </properties> |
| 323 | <dependencies> |
| 324 | <dependency> |
| 325 | <groupId>org.apache.felix</groupId> |
| 326 | <artifactId>org.apache.felix.framework</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 327 | <version>${felix.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 328 | <scope>test</scope> |
| 329 | </dependency> |
| 330 | </dependencies> |
| 331 | </profile> |
| 332 | |
| 333 | <profile> |
| 334 | <id>test</id> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 335 | <properties> |
| 336 | <skipTestExecution>false</skipTestExecution> |
| 337 | </properties> |
Clement Escoffier | fe1775d | 2013-05-13 12:54:07 +0000 | [diff] [blame] | 338 | </profile> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 339 | </profiles> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 340 | </project> |