I would like to deploy my project with the bottom 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" } }
java web-applications gradle weblogic ear
Luc
source share