Create separate module for muting tests logic

This commit is contained in:
Yunir Salimzyanov
2020-06-17 15:51:53 +03:00
parent 5e115c48b3
commit 4474077963
3 changed files with 17 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(kotlinStdlib())
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}