mirror of https://github.com/apache/maven.git
o using the 1.4 release of surefire
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329339 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9bfd980cbe
commit
cfefe6586a
|
@ -25,7 +25,7 @@
|
|||
<dependency>
|
||||
<groupId>surefire</groupId>
|
||||
<artifactId>surefire</artifactId>
|
||||
<version>1.4-SNAPSHOT</version>
|
||||
<version>1.4</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<dependency>
|
||||
<groupId>surefire</groupId>
|
||||
<artifactId>surefire-booter</artifactId>
|
||||
<version>1.4-SNAPSHOT</version>
|
||||
<version>1.4</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>plexus</groupId>
|
||||
|
|
|
@ -176,6 +176,13 @@ public class SurefirePlugin
|
|||
return;
|
||||
}
|
||||
|
||||
if ( !testClassesDirectory.exists() )
|
||||
{
|
||||
getLog().info( "No tests to run." );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// Setup the surefire booter
|
||||
// ----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue