mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
15 lines
323 B
Groovy
15 lines
323 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
|
||
|
testImplementation Deps.assertJ
|
||
|
testRuntimeOnly Deps.junitEngine
|
||
|
}
|
||
|
|