mirror of https://github.com/apache/maven.git
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:
parent
6f1d0020cf
commit
e5c7f6b808
|
@ -112,9 +112,9 @@ public class SurefirePlugin
|
||||||
|
|
||||||
surefireBooter.addClassPathUrl( new File( mavenRepoLocal, "surefire/jars/surefire-1.0.jar" ).getPath() );
|
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++ )
|
for ( int i = 0; i < classpathElements.length; i++ )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue