17 lines
458 B
Groovy
17 lines
458 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compileOnly ComponentsDependencies.tools_detekt_api
|
|
implementation ComponentsDependencies.androidx_annotation
|
|
|
|
testImplementation ComponentsDependencies.tools_detekt_api
|
|
testImplementation ComponentsDependencies.tools_detekt_test
|
|
testImplementation FenixDependencies.junitApi
|
|
testImplementation FenixDependencies.junitParams
|
|
testRuntimeOnly FenixDependencies.junitEngine
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform {}
|
|
}
|