mirror of
https://github.com/apache/maven.git
synced 2025-02-14 14:06:04 +00:00
occur as well as stdout and std err o there is a new parameter that is accepted so you can use a simplifed regex from the command line m2 surefire:test -D=test=FooTest is implicitly **/FooTest.java and the directory scanner is used so you can this to run a single test if you like or a set of tests: m2 surefire:test -Dtest=*Foo* is implicitly **/*Foo*.java You can also specify a comma separated list if you wish: m2 surefire:test -Dtest=*Foo*,*Bar* whic is implicitly **/*Foo*.java,**/*Bar*.java This just makes running a smaller set of tests easier while trying to pin point problems. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163120 13f79535-47bb-0310-9956-ffa450edef68
29 lines
785 B
XML
29 lines
785 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<type>plugin</type>
|
|
<name>Maven Surefire Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<package>org.apache.maven</package>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>surefire</groupId>
|
|
<artifactId>surefire-booter</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|