comparison pom.xml @ 313:9e2f9c85e7fe

Added system properties to maven surefire plugin to have them available in tests.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 21 Aug 2013 08:56:46 +0200
parents a529909cffeb
children e125bbe98014
comparison
equal deleted inserted replaced
312:fb47c445af20 313:9e2f9c85e7fe
241 Arquillian tests that execute in the specified container --> 241 Arquillian tests that execute in the specified container -->
242 <id>default</id> 242 <id>default</id>
243 <activation> 243 <activation>
244 <activeByDefault>true</activeByDefault> 244 <activeByDefault>true</activeByDefault>
245 </activation> 245 </activation>
246 <dependencies>
247 <dependency>
248 <groupId>junit</groupId>
249 <artifactId>junit</artifactId>
250 <version>4.10</version>
251 </dependency>
252 <dependency>
253 <groupId>org.jboss.resteasy</groupId>
254 <artifactId>resteasy-jaxrs</artifactId>
255 <version>2.2.2.GA</version>
256 </dependency>
257 <dependency>
258 <groupId>org.apache.httpcomponents</groupId>
259 <artifactId>httpcore</artifactId>
260 <version>4.1.4</version>
261 </dependency>
262 </dependencies>
246 <build> 263 <build>
247 <plugins> 264 <plugins>
248 <plugin> 265 <plugin>
249 <artifactId>maven-surefire-plugin</artifactId> 266 <artifactId>maven-surefire-plugin</artifactId>
250 <version>2.4.3</version> 267 <version>2.4.3</version>
251 <configuration> 268 <configuration>
252 <!-- 269 <systemProperties>
253 <skip>true</skip> 270 <property>
254 --> 271 <name>de.intevation.lada.test.singleprobe</name>
272 <value>/home/rrenkert/single.laf</value>
273 </property>
274 <property>
275 <name>de.intevation.lada.test.incompleteprobe</name>
276 <value>/home/rrenkert/incomplete.laf</value>
277 </property>
278 <property>
279 <name>de.intevation.lada.import</name>
280 <value>/opt/lada/config/import.json</value>
281 </property>
282 </systemProperties>
255 </configuration> 283 </configuration>
256 </plugin> 284 </plugin>
257 </plugins> 285 </plugins>
258 </build> 286 </build>
259 </profile> 287 </profile>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)