Currently bin included files are packaged as part of the package phase into the resulting jar.
This has the drawback that certain tool assume that the target/classes folder is something that can be seen as the result of the build as an exploded jar (e.g. when using that in classpathes).
For this to work there should be a ne mojo e.g. bound to the process-classes phase that do the copy to the output folder, the packaging phase can then simply package the result and do not need to perform the copy then.
Currently bin included files are packaged as part of the package phase into the resulting jar.
This has the drawback that certain tool assume that the
target/classesfolder is something that can be seen as the result of the build as an exploded jar (e.g. when using that in classpathes).For this to work there should be a ne mojo e.g. bound to the
process-classesphase that do the copy to the output folder, the packaging phase can then simply package the result and do not need to perform the copy then.