I am new to gradle and am trying to create a directory layout as such in netbeans:
myproject
|
|-- ear
|-- build.gradle
|-- ...
|-- core
|-- build.gradle
|-- ...
|-- web
|-- build.gradle
|-- include core project as dependency for this project
|-- ...
|-- settings.gradle // has include "ear", "core", "web"
I cant find a way to do this, in Google. Can anyone help me? Thanks in advance