diff --git a/maven-mboot/src/bash/maven.functions b/maven-mboot/src/bash/maven.functions index 3d96153c7f..fae36efa3b 100755 --- a/maven-mboot/src/bash/maven.functions +++ b/maven-mboot/src/bash/maven.functions @@ -175,11 +175,11 @@ buildMavenProject() copyResources bootstrap.resources target/classes - copyResources bootstrap.test.resources target/test-classes + copyResources bootstrap.tests.resources target/test-classes echo "Running tests in `pwd`" - runTests ".:${MBOOT_HOME}/classes:$repoLocal/surefire/jars/surefire-0.5.jar" "$home" "$repoLocal" bootstrap.libs bootstrap.tests.includes bootstrap.tests.excludes + runTests ".:${MBOOT_HOME}/classes:$repoLocal/surefire/jars/surefire-booter-1.0.jar" "$home" "$repoLocal" bootstrap.libs bootstrap.tests.includes bootstrap.tests.excludes if [ "$2" = "default" ] then diff --git a/maven-mboot/src/main/Bootstrapper.java b/maven-mboot/src/main/Bootstrapper.java index 20750cc3a9..f311df5eec 100644 --- a/maven-mboot/src/main/Bootstrapper.java +++ b/maven-mboot/src/main/Bootstrapper.java @@ -155,7 +155,7 @@ public class Bootstrapper writeFile( "bootstrap.tests.excludes", tests.toString() ); - writeResources( unitTests.getResources(), "bootstrap.test.resources" ); + writeResources( unitTests.getResources(), "bootstrap.tests.resources" ); } }