Where do I put weblogic-application.xml in my Maven 2 project so that Maven places it in META_INF in the target EAR artifact?
Where do I put weblogic-application.xml in my Maven 2 project so that Maven places
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
weblogic-application.xmlshould be packaged in theMETA-INFdirectory of your final EAR (next to the standardapplication.xml).With the Maven EAR Plugin, the default location for extra files to include in the EAR (that you can control with the
earSourceDirectoryparameter) issrc/main/application. So the following would work (using the defaults):