In a new project - in which I am using gradle/gradlew - I want to set the location of various gradle/gradlew files and folders to something different than the default behaviour.
I am talking about:
- folder gradle, with sub folder wrapper (holding gradle-wrapper.jar and gradle-wrapper.properties
- folder build, with sub folders 'classes', 'dependency-cache', 'libs', 'resources' having all kinds of xml files from individual components, and 'tmp' having sub folders 'compileJava' and 'jar'.
But how and where do I configure this?
grad[tab]
and it auto-completes togradle
(including the trailing space) and I type the rest of my command. With the wrapper, I type./gra[tab]
and it autocompletes to./gradle
which isn't the wrapper, it's the folder the wrapper is in, so I have to pressw
after the tab before I enter any options. Being able to rename thegradle
folder would be really handy. – rjmunro