I’m trying out buildship. We’ve got a dozen interconnected Eclipse projects. We started out using only Eclipse build, but I have gradually been making Gradle scripts for them, and treating them as a single multiproject build. This was especially useful for making WAR files, because I was frustrated by not always being able to understand what Eclipse was doing. Originally there was a project “master” that held jars we got from others, two libraries (“lib1” and “lib2”), and a few applications that used only lib1 and a few that used both. Some of the applications were web apps, one was a swing app, and a couple were command-line programs. I treated “master” as the root and the others as subprojects, and have gradle working fairly well. I’ve gotten rid of almost all the jars from “master” except for a few that we customized.
I heard about buildship and it looks cool, but it doesn’t seem to want to support multiproject builds like that. I’ve seen advice to import the root and they will all come in. Projects are managed separately in svn. Is this talking about importing them into the workspace, or something else? How do I convert all these projects to a single multiproject build like I did with Gradle? How do I convert a set of Eclipse projects, already using Gradle, to buildship?