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:
Jason van Zyl 2005-10-29 01:12:39 +00:00
parent 9bfd980cbe
commit cfefe6586a
2 changed files with 9 additions and 2 deletions

View File

@ -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>

View File

@ -176,6 +176,13 @@ public class SurefirePlugin
return;
}
if ( !testClassesDirectory.exists() )
{
getLog().info( "No tests to run." );
return;
}
// ----------------------------------------------------------------------
// Setup the surefire booter
// ----------------------------------------------------------------------