API 文档 | EarPluginConvention |
---|
注意:此类已弃用,将在 Gradle 的下一个主要版本中删除。
Ear 插件约定。
属性 | 描述 |
appDirName | 应用程序目录的名称,相对于项目目录。默认为 "src/main/application"。 |
deploymentDescriptor | 自定义部署描述符配置。默认为具有合理默认值的 "application.xml"。 |
generateDeploymentDescriptor | 指定如果 deploymentDescriptor 不存在是否应生成。默认为 true。 |
libDirName | EAR 文件中库目录的名称。默认为 "lib"。 |
方法 | 描述 |
appDirName(appDirName) | 允许更改应用程序目录。默认为 "src/main/application"。 |
deploymentDescriptor(configureAction) | 为此 EAR 归档配置部署描述符。 |
libDirName(libDirName) | 允许更改 EAR 文件中的库目录。默认为 "lib"。 |
块 | 描述 |
deploymentDescriptor | 为此 EAR 归档配置部署描述符。 |
DeploymentDescriptor
deploymentDescriptor
自定义部署描述符配置。默认为具有合理默认值的 "application.xml"。
- 使用
ear
插件的默认值 - 使用合理默认值初始化的部署描述符
指定如果 deploymentDescriptor 不存在是否应生成。默认为 true。
- 使用
ear
插件的默认值 true
void
appDirName
(String
appDirName)
允许更改应用程序目录。默认为 "src/main/application"。
EarPluginConvention
deploymentDescriptor
(Action
<? super DeploymentDescriptor
>
configureAction)
Action
<? super DeploymentDescriptor
>为此 EAR 归档配置部署描述符。
给定的 action 将被执行以配置部署描述符。
void
libDirName
(String
libDirName)
允许更改 EAR 文件中的库目录。默认为 "lib"。
为此 EAR 归档配置部署描述符。
给定的 closure 将被执行以配置部署描述符。DeploymentDescriptor 作为其委托传递给 closure。