On 12/4/06, Christian Goetze <[EMAIL PROTECTED]> wrote:
> Where are the files located, and what type of files are they? They are "." files generated by the build system into which I'm embedding maven. They contain additional metadata about the files and I do not have the option of moving them around. They will appear wherever source files exist, and they seem to end up in the jars generated by the packaging.
If they are under src/main/java, it's odd that they're getting included. IME only .java files from there get compiled, everything else is ignored. (For example, if you have .properties files stored with your source code, you have to add a <resource> to pick them up.)
I'm wondering if there isn't an option for the maven-jar-plugin, but I can't seem to find any.
The location of sources and resources is a <build> level thing, not specific to the jar plugin. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
