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 | |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 38 | <exam.version>3.0.1</exam.version> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 39 | <url.version>1.5.1</url.version> |
| 40 | |
| 41 | <felix.version>4.2.0</felix.version> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 42 | <equinox.version>3.9.0.v20130529-1710</equinox.version> |
| 43 | <knoperflerfish.version>6.0.2</knoperflerfish.version> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 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> |
Clement Escoffier | 7e95146 | 2013-10-04 13:11:51 +0000 | [diff] [blame] | 120 | <!-- Defined by the profiles --> |
| 121 | <pax.exam.framework>${pax.exam.framework}</pax.exam.framework> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 122 | </systemPropertyVariables> |
| 123 | </configuration> |
| 124 | </plugin> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 125 | </plugins> |
| 126 | |
| 127 | </build> |
| 128 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 129 | <dependencies> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 130 | <dependency> |
| 131 | <groupId>org.ops4j.pax.exam</groupId> |
| 132 | <artifactId>pax-exam-container-native</artifactId> |
| 133 | <version>${exam.version}</version> |
| 134 | <scope>test</scope> |
| 135 | </dependency> |
| 136 | |
| 137 | <dependency> |
| 138 | <groupId>org.ops4j.pax.exam</groupId> |
| 139 | <artifactId>pax-exam-junit4</artifactId> |
| 140 | <version>${exam.version}</version> |
| 141 | <scope>test</scope> |
| 142 | </dependency> |
| 143 | |
| 144 | <dependency> |
| 145 | <groupId>org.ops4j.pax.exam</groupId> |
| 146 | <artifactId>pax-exam-link-mvn</artifactId> |
| 147 | <version>${exam.version}</version> |
| 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | |
| 151 | <dependency> |
| 152 | <groupId>org.ops4j.pax.url</groupId> |
| 153 | <artifactId>pax-url-aether</artifactId> |
| 154 | <version>${url.version}</version> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
| 157 | |
| 158 | <dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 159 | <groupId>ch.qos.logback</groupId> |
| 160 | <artifactId>logback-core</artifactId> |
| 161 | <version>0.9.6</version> |
| 162 | <scope>test</scope> |
| 163 | </dependency> |
| 164 | |
| 165 | <dependency> |
| 166 | <groupId>ch.qos.logback</groupId> |
| 167 | <artifactId>logback-classic</artifactId> |
| 168 | <version>0.9.6</version> |
| 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>junit</groupId> |
| 174 | <artifactId>junit</artifactId> |
| 175 | <version>4.9</version> |
| 176 | <scope>test</scope> |
| 177 | </dependency> |
| 178 | |
| 179 | <dependency> |
| 180 | <groupId>org.mockito</groupId> |
| 181 | <artifactId>mockito-all</artifactId> |
| 182 | <version>1.9.5</version> |
| 183 | </dependency> |
| 184 | |
| 185 | <dependency> |
| 186 | <groupId>org.ops4j.pax.tinybundles</groupId> |
| 187 | <artifactId>tinybundles</artifactId> |
| 188 | <version>1.0.0</version> |
| 189 | </dependency> |
| 190 | |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 191 | <!-- The tiny bundle extension must be before the manipulator version |
| 192 | to use the right version of the manipulator --> |
| 193 | <dependency> |
| 194 | <groupId>org.ow2.chameleon.testing</groupId> |
| 195 | <artifactId>tinybundles-ipojo</artifactId> |
| 196 | <version>0.3.0</version> |
Clement Escoffier | fe1775d | 2013-05-13 12:54:07 +0000 | [diff] [blame] | 197 | <scope>test</scope> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 198 | </dependency> |
| 199 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 200 | <!-- Define the tested version --> |
| 201 | <dependency> |
| 202 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 203 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Guillaume Sauthier | ca551ba | 2013-06-03 17:08:57 +0000 | [diff] [blame] | 204 | <version>${project.version}</version> |
Clement Escoffier | 8c127ac | 2013-03-09 09:06:29 +0000 | [diff] [blame] | 205 | </dependency> |
| 206 | |
| 207 | <dependency> |
| 208 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 209 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 6c1d758 | 2013-06-21 14:24:32 +0000 | [diff] [blame] | 210 | <!-- To update before the release --> |
Clement Escoffier | 52ddb28 | 2013-10-08 12:54:51 +0000 | [diff] [blame] | 211 | <!--<version>${project.version}</version>--> |
Clement Escoffier | 9404798 | 2013-10-08 13:08:51 +0000 | [diff] [blame^] | 212 | <version>1.10.1</version> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 213 | <exclusions> |
| 214 | <exclusion> |
| 215 | <groupId>org.osgi</groupId> |
| 216 | <artifactId>org.osgi.core</artifactId> |
| 217 | </exclusion> |
| 218 | <exclusion> |
| 219 | <groupId>org.osgi</groupId> |
| 220 | <artifactId>org.osgi.compendium</artifactId> |
| 221 | </exclusion> |
| 222 | </exclusions> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 223 | </dependency> |
| 224 | |
Clement Escoffier | 4f2609b | 2013-03-20 07:35:37 +0000 | [diff] [blame] | 225 | <dependency> |
| 226 | <groupId>org.apache.felix</groupId> |
| 227 | <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId> |
Guillaume Sauthier | ca551ba | 2013-06-03 17:08:57 +0000 | [diff] [blame] | 228 | <version>${project.version}</version> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 229 | <exclusions> |
| 230 | <exclusion> |
| 231 | <groupId>org.osgi</groupId> |
| 232 | <artifactId>org.osgi.core</artifactId> |
| 233 | </exclusion> |
| 234 | <exclusion> |
| 235 | <groupId>org.osgi</groupId> |
| 236 | <artifactId>org.osgi.compendium</artifactId> |
| 237 | </exclusion> |
| 238 | <exclusion> |
| 239 | <groupId>org.apache.felix</groupId> |
| 240 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 241 | </exclusion> |
| 242 | </exclusions> |
Clement Escoffier | 4f2609b | 2013-03-20 07:35:37 +0000 | [diff] [blame] | 243 | </dependency> |
| 244 | |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 245 | <!-- End of tested version --> |
| 246 | |
| 247 | <dependency> |
| 248 | <groupId>org.apache.felix</groupId> |
| 249 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 250 | <version>1.6.0</version> |
| 251 | <scope>test</scope> |
| 252 | </dependency> |
| 253 | |
| 254 | <dependency> |
| 255 | <groupId>commons-io</groupId> |
| 256 | <artifactId>commons-io</artifactId> |
| 257 | <version>2.4</version> |
| 258 | </dependency> |
| 259 | |
| 260 | <dependency> |
| 261 | <groupId>org.ow2.chameleon.testing</groupId> |
| 262 | <artifactId>osgi-helpers</artifactId> |
Clement Escoffier | 52ddb28 | 2013-10-08 12:54:51 +0000 | [diff] [blame] | 263 | <version>0.6.1</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 264 | <scope>test</scope> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 265 | <exclusions> |
| 266 | <exclusion> |
| 267 | <groupId>org.osgi</groupId> |
| 268 | <artifactId>org.osgi.core</artifactId> |
| 269 | </exclusion> |
| 270 | </exclusions> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 271 | </dependency> |
| 272 | |
| 273 | <dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 274 | <groupId>org.apache.felix</groupId> |
| 275 | <artifactId>org.apache.felix.log</artifactId> |
| 276 | <version>1.0.1</version> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 277 | <exclusions> |
| 278 | <exclusion> |
| 279 | <groupId>org.osgi</groupId> |
| 280 | <artifactId>org.osgi.core</artifactId> |
| 281 | </exclusion> |
| 282 | </exclusions> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 283 | </dependency> |
| 284 | |
| 285 | <dependency> |
| 286 | <groupId>org.ops4j.pax.url</groupId> |
| 287 | <artifactId>pax-url-wrap</artifactId> |
| 288 | <version>1.5.2</version> |
| 289 | </dependency> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 290 | |
| 291 | <dependency> |
| 292 | <groupId>org.easytesting</groupId> |
| 293 | <artifactId>fest-assert</artifactId> |
| 294 | <version>1.4</version> |
| 295 | </dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 296 | </dependencies> |
| 297 | |
| 298 | <profiles> |
| 299 | <profile> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 300 | <id>default</id> |
| 301 | <activation> |
| 302 | <activeByDefault>true</activeByDefault> |
| 303 | </activation> |
Clement Escoffier | 7e95146 | 2013-10-04 13:11:51 +0000 | [diff] [blame] | 304 | <properties> |
| 305 | <pax.exam.framework>none</pax.exam.framework> |
| 306 | </properties> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 307 | <dependencies> |
| 308 | <dependency> |
| 309 | <groupId>org.osgi</groupId> |
| 310 | <artifactId>org.osgi.compendium</artifactId> |
| 311 | <version>4.3.0</version> |
| 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>org.osgi</groupId> |
| 315 | <artifactId>org.osgi.core</artifactId> |
| 316 | <version>4.3.1</version> |
| 317 | </dependency> |
| 318 | </dependencies> |
| 319 | </profile> |
| 320 | <profile> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 321 | <id>knopflerfish</id> |
| 322 | <activation> |
| 323 | <activeByDefault>false</activeByDefault> |
| 324 | <property> |
| 325 | <name>pax.exam.framework</name> |
| 326 | <value>knopflerfish</value> |
| 327 | </property> |
| 328 | </activation> |
| 329 | <properties> |
| 330 | <pax.exam.framework>knopflerfish</pax.exam.framework> |
| 331 | </properties> |
| 332 | <repositories> |
| 333 | <repository> |
| 334 | <id>knopflerfish-releases</id> |
| 335 | <url>http://www.knopflerfish.org/maven2</url> |
| 336 | </repository> |
| 337 | </repositories> |
| 338 | <dependencies> |
| 339 | <dependency> |
| 340 | <groupId>org.knopflerfish</groupId> |
| 341 | <artifactId>framework</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 342 | <version>${knoperflerfish.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 343 | <scope>test</scope> |
| 344 | </dependency> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 345 | <dependency> |
| 346 | <!-- must be after KF --> |
| 347 | <groupId>org.osgi</groupId> |
| 348 | <artifactId>org.osgi.core</artifactId> |
| 349 | <version>4.3.1</version> |
| 350 | </dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 351 | </dependencies> |
| 352 | </profile> |
| 353 | |
| 354 | <profile> |
| 355 | <id>equinox</id> |
| 356 | <activation> |
| 357 | <activeByDefault>false</activeByDefault> |
| 358 | <property> |
| 359 | <name>pax.exam.framework</name> |
| 360 | <value>equinox</value> |
| 361 | </property> |
| 362 | </activation> |
| 363 | <properties> |
| 364 | <pax.exam.framework>equinox</pax.exam.framework> |
| 365 | </properties> |
| 366 | <dependencies> |
| 367 | <dependency> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 368 | <groupId>org.osgi</groupId> |
| 369 | <artifactId>org.osgi.compendium</artifactId> |
| 370 | <version>4.3.0</version> |
| 371 | </dependency> |
| 372 | <dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 373 | <groupId>org.eclipse.tycho</groupId> |
| 374 | <artifactId>org.eclipse.osgi</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 375 | <version>${equinox.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 376 | <scope>test</scope> |
| 377 | </dependency> |
Clement Escoffier | 8903b0a | 2013-09-22 17:55:19 +0000 | [diff] [blame] | 378 | <dependency> |
| 379 | <!-- must be after equinox --> |
| 380 | <groupId>org.osgi</groupId> |
| 381 | <artifactId>org.osgi.core</artifactId> |
| 382 | <version>4.3.1</version> |
| 383 | </dependency> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 384 | </dependencies> |
| 385 | </profile> |
| 386 | |
| 387 | <profile> |
| 388 | <id>felix</id> |
| 389 | <activation> |
| 390 | <activeByDefault>false</activeByDefault> |
| 391 | <property> |
| 392 | <name>pax.exam.framework</name> |
| 393 | <value>felix</value> |
| 394 | </property> |
| 395 | </activation> |
| 396 | <properties> |
| 397 | <pax.exam.framework>felix</pax.exam.framework> |
| 398 | </properties> |
| 399 | <dependencies> |
| 400 | <dependency> |
| 401 | <groupId>org.apache.felix</groupId> |
| 402 | <artifactId>org.apache.felix.framework</artifactId> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 403 | <version>${felix.version}</version> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 404 | </dependency> |
| 405 | </dependencies> |
| 406 | </profile> |
| 407 | |
| 408 | <profile> |
| 409 | <id>test</id> |
Clement Escoffier | 609bf5f | 2013-06-21 07:30:11 +0000 | [diff] [blame] | 410 | <properties> |
| 411 | <skipTestExecution>false</skipTestExecution> |
| 412 | </properties> |
Clement Escoffier | fe1775d | 2013-05-13 12:54:07 +0000 | [diff] [blame] | 413 | </profile> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 414 | </profiles> |
Clement Escoffier | e698656 | 2013-02-22 18:55:31 +0000 | [diff] [blame] | 415 | </project> |