In Eclipse, I have a imported a Gradle project that has a binary (.jar) dependency to a library which is built using a separate Gradle project.
I want to be able to make changes to the library in Eclipse and use the changed code immediately. This should be possible using the relatively new "Composite Builds" Gradle feature.
I'm using Buildship 2.0. I've found out that I can do this by changing settings.gradle to specify an included build. However, I don't want to commit this change to Git (since it breaks the standalone build) and I prefer not to have to keep local changes anyway.
Is there a way to specify the projects to include in the composite build without changing settings.gradle? In IntelliJ IDEA this is possible simply by right-clicking the project and choosing "Composite Build Configuration"