Maven Put .DLL in the root of the JAR

How can I include my own file .dllin the root of the JAR using Maven?

+5
source share
2 answers

If you already have your DLL file, just save it in the project directory src/main/resourcesand Maven will put it in the root directory of the target jar.

+8
source

All Articles