In a non-multiplatform Gradle convention plugin, I...
# multiplatform
p
In a non-multiplatform Gradle convention plugin, I use a
tasks { test { useJunitPlatform() } }
block. When converting the convention plugin to multi-platform, this Gradle code fails as the "test" function is no longer recognized. How would I indicate that the common test target is to use JUnit5 with the kotlinMultiplatform plugin?