I'm having trouble setting up Buildship for Eclipse the way I want. Currently, I have> 50 projects that always open in Eclipse, but I want to go only to those projects that I am actively working on in Eclipse, and other projects will use the Maven repository to solve their dependency.
Suppose ProjectA (containing the main one) depends on ProjectB (library project). If ProjectB opens in Eclipse, I would like ProjectA to use ProjectB directly. Changing the code in ProjectB would be noticeable when ProjectA started. However, if ProjectB is closed, I would like ProjectA to use the ProjectB JB located in the Maven repository mentioned in the build.gradle file.
The behavior I'm talking about is described in detail here .
Is there a way to do this with Buildship? Or should I use another Gradle Eclipse plugin?
eclipse maven-2 build.gradle gradle gradle-eclipse
CydrickT
source share