-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (40 loc) · 1.34 KB
/
build.gradle
File metadata and controls
49 lines (40 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: "build-system/dependencies.gradle"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_tools"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:+'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$android_navigation"
classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0"
}
}
plugins {
id("io.gitlab.arturbosch.detekt").version("1.15.0")
id("io.github.cdsap.talaiot.plugin.base") version "1.5.1"
id("com.osacky.doctor").version("0.8.1")
id("com.autonomousapps.dependency-analysis") version "1.19.0"
// id("com.dropbox.affectedmoduledetector").version("0.2.1")
}
apply plugin: "com.vanniktech.android.junit.jacoco"
talaiot {
publishers {
jsonPublisher = true
}
}
allprojects {
apply from: "$rootDir/config/detekt.gradle"
apply from: "$rootDir/config/jacoco.gradle"
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}