In Maven is it possible to keep integration tests in a separate folder from unit tests?
You can put the IT’ss into different folder like this: . |– pom.xml `– src |– it | `– java | `– com | `– soebes | `– maui | `– it | `– BitMaskIT.java |– main | `– java | `– com | `– soebes | `– maui | `– it | `– BitMask.java … Read more