使用gradle为EJB模块生成eclipse项目
我想为 EAR 项目、EJB 客户端 jar 和 EJB 模块生成项目和设置,但我无法将新的方面插入 eclipseWtp 任务,根据 gradle 网站上的文档尝试了多种组合。
尝试了类似以下的操作,但总是出现文件过早结束错误。
eclipseWtp {
beforeConfigured { wtp ->
wtp.facets.add(new Facet('jst.ejb','3.1'))
}
}
eclipseWtp {
facet(['name':'jst.ejb','version':'3.1'])
}
I want to generate project and settings for a EAR project, a EJB client jar and a EJB module but i was not able to insert new facets to the eclipseWtp task, tried many combinations based on the documentation on gradle website.
tried things like the following and always got Premature end of file error.
eclipseWtp {
beforeConfigured { wtp ->
wtp.facets.add(new Facet('jst.ejb','3.1'))
}
}
eclipseWtp {
facet(['name':'jst.ejb','version':'3.1'])
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保在项目上应用了
war
和eclipse
插件。然后它将正常工作,例如:Make sure that both
war
andeclipse
plugins are applied on the project. Then it will work correctly, eg.: