Description
when user don't set mavenHome property for mvn Task, this tries to download specified maven-related files into default %user%/.m2/repository directory.
Even, when I speciefied the localRepository param, this is ommited by this task.
To solve this problem simply add ( in method downloadAndConfigureMaven()) this line :
[...]
depsTask.addLocalRepository(getLocalRepository());
[...]