I need to build a jar file that includes (other, external projects') Maven artefacts.
The artefacts are to be included just like stuff in src/main/resources, without any processing. Even though they happen ...
when I package my project with the Maven goal "package", the resources are included as well. They are originally located in the directory "src/main/resources".
Because I want to create an executable jar ...
I have a project that's made up out of an ear, some XSLT files, RNC schema files. I want to keep the XSLT, schema and document files external (for hot-replacement), and ...
we are asked to build package that contains configurations for ALL environments, the resulting package should like:
/bin
/lib
/config/prd/instance1
/config/prd/instance2
/config/uat/instance1
All config files are filtered and we can apply filters with resources plugin to build ...
when I create a war package with maven, files and directories under the directory "src/main/resources" are copied in /WEB-INF/classes instead of /WEB-INF. How can I get them copied in /WEB-INF?
thanks,
rand
UPDATE:
in my ...
I have 2 java projects which are Maven projects.
One is a desktop app which has a plugin (maven-assembly-plugin) that I am using to 'package' all the dependencies that this ...