API 文档 | EclipseWtp |
---|
启用 Eclipse 插件的 wtp/wst 细节微调
对于应用了 eclipse 插件以及 ear 或 war 插件之一的项目,此插件会自动应用。
更多有趣的示例,您可以在 EclipseWtpComponent
和 EclipseWtpFacet
的文档中找到
plugins { id 'war' // or 'ear' or 'java' id 'eclipse-wtp' } eclipse { //if you want parts of paths in resulting file(s) to be replaced by variables (files): pathVariables 'GRADLE_HOME': file('/best/software/gradle'), 'TOMCAT_HOME': file('../tomcat') wtp { component { //for examples see docs for EclipseWtpComponent } facet { //for examples see docs for EclipseWtpFacet } } }
void
component
(Action
<? super EclipseWtpComponent
>
action)
Action
<? super EclipseWtpComponent
>配置 wtp 组件。
有关示例,请参见 EclipseWtpComponent
的文档