How to use Gradle test fixtures in Maven via dependency
You can share test code between modules/projects easily using the Gradle java-test-fixtures plugin.
plugins {
id("java-test-fixtures")
}
This will allow you to create a new source set in src/testFixtures where you can define the test code you wa...
tschuehly.de1 min read