Does the gradlewrapper download maven if it is needed for a build?

Does the gradlewrapper download maven if it is needed for a build?

No it doesn’t. Gradle cannot execute Maven builds.

by having :

repositories {

mavenCentral()

}

in my gradle script, I am just directing gradle to look for dependencies in the external mvn repository … Correct? So this statement does not mean I need mvn installed on my PC/server… Correct?

Yes that’s correct.