I'm migrating an existing Maven and JUnit 5 project where the integration and unit tests are separated into different phases:
- the *Test.javaunit tests are run on the test phase
- the *IT.javaintegration tests are run on the verify phase
How do I accomplish the same separation with Gradle? It is my understanding that Gradle's check task is the equivalent to Maven's verify.
