What is the Gradle counterpart to Maven archetypes? How can I give other Gradle users a template for the file and directory layout for a new project?
There is no gradle counterpart as far as I know. However following the steps given below is enough for most cases:
gradle init
It is supposed to work with all basic maven archetypes.