GarouDan
01/30/2019, 6:54 PMsourceSets {
jvmMain {
kotlin.srcDirs "src/main/kotlin"
resources.srcDir "src/main/resources"
...
}
where we are changing the dirs for the jvm target, how can we do the same for the tests folder?
I tried some variations like this one:
kotlinTest.srcDirs "src/main/test"
testResources.srcDir "src/test/resources"
but it didn’t work.
Is there a doc or a place where I can find the available options?Dominaezzz
01/30/2019, 6:58 PMjvmMain
, do jvmTest { kotlin.srcDirs .... }
.GarouDan
01/30/2019, 8:45 PM