How can you depend on test code from another module in Maven?
Example, I have 2 modules:
- Base
- Main
I would like a test case in Main to extend a base test class in Base. Is this possible?
Update: Found an acceptable answer, which involves creating a test jar.