o the classes directories are now aligned so the basedir is not needed.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162829 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-06-22 17:03:45 +00:00
parent 6f1d0020cf
commit e5c7f6b808
1 changed files with 2 additions and 2 deletions

View File

@ -112,9 +112,9 @@ public class SurefirePlugin
surefireBooter.addClassPathUrl( new File( mavenRepoLocal, "surefire/jars/surefire-1.0.jar" ).getPath() );
surefireBooter.addClassPathUrl( new File( basedir, classesDirectory ).getPath() );
surefireBooter.addClassPathUrl( new File( classesDirectory ).getPath() );
surefireBooter.addClassPathUrl( new File( basedir, testClassesDirectory ).getPath() );
surefireBooter.addClassPathUrl( new File( testClassesDirectory ).getPath() );
for ( int i = 0; i < classpathElements.length; i++ )
{