summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/mozilla-detekt-rules/build.gradle
blob: 8588c0504f49af9ec8240a289c04b51d24c22c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 {}
}