问题
I would like to deploy my project with below structure:
--MyPrj.ear
--APP-INF
--classes
--lib
--META-INF
--application.xml
--weblogic-application.xml
--WEB_MAIN
--assets
--WEB-INF
--conf
--web.xml
--weblogic.xml
And here is my ear configuration
ear {
appDirName 'APP-INF/src'
libDirName 'APP-INF/lib'
deploymentDescriptor {
applicationName = "MyPRJ"
displayName = "My Project"
description = "My Project"
}
}
来源:https://stackoverflow.com/questions/31978589/gradle-custom-ear