Gradle ordinary ear

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" } } 
0
java web-applications gradle weblogic ear
source share

No one has answered this question yet.

See similar questions:

7
Gradle Deployment Project for Ears

or similar:

1206
What is Gradle in Android Studio?
7
Gradle Deployment Project for Ears
3
Packing a WAR file in an EAR so that WAR dependencies are available
2
WAR loads differently on weblogic when inside an EAR, why?
one
Link to common Java EE Libs in Weblogic from WAR inside EAR
one
weblogic hot deployment works for jsps but not for web-inf / classes
0
EJB spring packaging in EAR on Weblogic
0
Weblogic Ear Deployment Fails to Implement Object Manager
0
Broken EAR Deployment Does Not Work in Weblogic 10.3.4
-one
Gradle task for packaging Springboot project for ear

All Articles