I'm using the Maven Appassembler plugin to package my application. I'd like to package some configuration files with the application. I've found the configurationDirectory
and includeConfigurationDirectoryInClasspath
parameters, but I haven't found how I should create (and populate) that configuration directory. I've tried putting the files in src/main/resources
, but that just puts them in the jar file for my project.
What is the "proper" way to do this, using maven?