Here is a problem I run into.
In Eclipse/STS when I open multiple build.gradle I can't tell what files they belong without looking at the path. (This is same as pom.xml in Maven.)
Is there a way to say have something like below:
top-project
build.gradle
module-1
module-1.gradle
module-2
module-2.gradle
.
.
module-n
module-n.gradle
In the above module-1 etc. are just names of sub-modules as in one real life example this could be acme-schema
or acme-web
- How does gradle build work ?
- More importantly - how does eclipse cope with this during
apply eclipse
/ Build Model ?