mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-05 21:20:45 +00:00
17 lines
417 B
Groovy
17 lines
417 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compileOnly FenixDependencies.detektApi
|
|
implementation FenixDependencies.androidx_annotation
|
|
|
|
testImplementation FenixDependencies.detektApi
|
|
testImplementation FenixDependencies.detektTest
|
|
testImplementation FenixDependencies.junitApi
|
|
testImplementation FenixDependencies.junitParams
|
|
testRuntimeOnly FenixDependencies.junitEngine
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform {}
|
|
}
|