mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
aba1c4cb5a
It was only used for 3 checks so it's not worth having a dependency on it.
14 lines
289 B
Groovy
14 lines
289 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compileOnly Deps.detektApi
|
|
|
|
testImplementation Deps.detektApi
|
|
testImplementation Deps.detektTest
|
|
implementation Deps.kotlin_stdlib
|
|
testImplementation Deps.junitApi
|
|
testImplementation Deps.junitParams
|
|
testRuntimeOnly Deps.junitEngine
|
|
}
|
|
|