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 归档配置部署描述符。

属性详情

String appDirName

应用程序目录的名称,相对于项目目录。默认为 "src/main/application"。

使用 ear 插件的默认值
'src/main/application'

DeploymentDescriptor deploymentDescriptor

自定义部署描述符配置。默认为具有合理默认值的 "application.xml"。

使用 ear 插件的默认值
使用合理默认值初始化的部署描述符

Property<Boolean> generateDeploymentDescriptor

指定如果 deploymentDescriptor 不存在是否应生成。默认为 true。

使用 ear 插件的默认值
true

String libDirName

EAR 文件中库目录的名称。默认为 "lib"。

使用 ear 插件的默认值
'lib'

方法详情

void appDirName(String appDirName)

允许更改应用程序目录。默认为 "src/main/application"。

EarPluginConvention deploymentDescriptor(Action<? super DeploymentDescriptor> configureAction)

为此 EAR 归档配置部署描述符。

给定的 action 将被执行以配置部署描述符。

void libDirName(String libDirName)

允许更改 EAR 文件中的库目录。默认为 "lib"。

脚本块详情

deploymentDescriptor { }

为此 EAR 归档配置部署描述符。

给定的 closure 将被执行以配置部署描述符。DeploymentDescriptor 作为其委托传递给 closure。