I want to have a source folder in eclipse which is treated like test source but is ignored during the test phase. It will contain unit tests and other code which will only ever be executed manually.
- it must appear and compile as a source folder in eclipse
- it must compile with dependencies that have test scope
- it will contain unit tests
- these unit tests must not be executed during any phase of the maven lifecycle
- the code must not be packaged as part of the build
- I also have a source folder for unit tests which will be executed during the test phase
Is this possible and if so then how?