So I have a gradle project that apparently has some problems fully integrating with eclipse. When I build the whole thing with \"gradle build\" command and deploy the EAR fi
Looks like all dependent projects also should be having eclipse-wtp plugin. Following works for me.
allprojects { apply plugin: 'eclipse-wtp' }
I found this here
WTP support in Buildship plugin is yet to come.