Eclipse doesn't deploy Gradle project properly

前端 未结 2 1252
花落未央
花落未央 2021-01-15 03:50

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

相关标签:
2条回答
  • 2021-01-15 03:52

    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

    0 讨论(0)
  • 2021-01-15 03:52

    WTP support in Buildship plugin is yet to come.

    0 讨论(0)
提交回复
热议问题