> The problem is that after executing "mvn clean package", the uber-JAR does > not include anything under my test folder (./src/test/java/org/myAddress/*). > > How can I configure the shade plugin to include those test files?
This is how things are supposed to work. Test files are not included in normal jar artifacts. Sounds like these are not in fact test files. Move them to src/main/resources or src/main/java and they will be included as you would like. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
