I have a standard java application that I'm building with Maven. It includes a few files under src/main/resource directory. At present, those files are being packaged inside the JAR fiel that is produced, which I would expect, but is there a way to configure the maven assembly plugin to package those files outside of the JAR file, or can I achieve that with another plugin (resources?)?
Asked
Active
Viewed 477 times
0
-
https://stackoverflow.com/questions/4200695/packaging-a-jar-into-a-dist-dir-with-separated-external-resources-and-dependenci should solve your question – Fullslack Sep 17 '20 at 17:07
-
Why do you use the maven-assembly-plugin? For which purpose? – khmarbaise Sep 17 '20 at 17:54
-
My understanding is that it assists with customizing the structure and organization of the artifacts that come out the build process – user1154644 Sep 17 '20 at 18:25