prashanth-g
prashanth-g

Reputation: 1233

How to create gradle multi-project in netbeans?

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

Upvotes: 2

Views: 2115

Answers (1)

Radim
Radim

Reputation: 4808

Create these files on disk and open the project in NetBeans. I assume you have a plugin with Gradle support installed. I think there are no such wizards to guide you through multi-project build setup.

If you have Gradle downloaded and installed you can take a look at bundled samples (in samples folder).

Upvotes: 3

Related Questions