Gradle eclipse doesn't keep dependency projects manually added

In Eclipse, I manually add project B to project A’s Build Path/Projects tab. Next time when I run gradle eclipse, it re-generates the .classpath file without the project B I added. Reading the Eclipse plugin documentation, I was under the impression that the classpath gradle generates was supposed to merge into the existing one, instead of completely overwriting it?

Thanks for any pointers.

The class path is always overwritten, rather than merged. The assumption is that all dependencies are managed in the build script.

OK, thanks. At least that settles it…