pply plugin: 'ear'
apply plugin: 'java'
repositories { mavenCentral() }
dependencies {
// The following dependencies will be the ear modules and// will be placed in the ear root
deploy project(path: ':war', configuration: 'archives')
// The following dependencies will become ear libs and will// be placed in a dir configured via the libDirName property
earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
}
ear {
appDirName 'src/main/app'// use application metadata found in this folder// put dependent libraries into APP-INF/lib inside the generated EAR
libDirName 'APP-INF/lib'
deploymentDescriptor { // custom entries for application.xml:// fileName = "application.xml" // same as the default value// version = "6" // same as the default value
applicationName = "customear"
initializeInOrder = true
displayName = "Custom Ear"// defaults to project.name// defaults to project.description if not set
description = "My customized EAR for the Gradle documentation"// libraryDirectory = "APP-INF/lib" // not needed, above libDirName setting does this// module("my.jar", "java") // won't deploy as my.jar isn't deploy dependency// webModule("my.war", "/") // won't deploy as my.war isn't deploy dependency
securityRole "admin"
securityRole "superadmin"
withXml { provider -> // add a custom node to the XML
provider.asNode().appendNode("data-source", "my/data/source")
}
}
}
更多建議: