During build, I generate build.properties files through the maven properties plugin (properties-maven-plugin), which contains information about the assembly.
What is the best way to include this file in the created jar? I do not want to put it in the src / main / resources directory, as this would pollute my default resource directory.
Is there a directory of generated resources, as it is with the source?
source
share