// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { kotlin_version = KOTLIN_VERSION } repositories { google() jcenter() // releases mavenCentral() // snapshots maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { classpath "com.android.tools.build:gradle:$GRADLE_PLUGIN_VERSION" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION" classpath "com.autonomousapps:dependency-analysis-gradle-plugin:$GRADLE_ANALYZE_VERSION" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() maven { url 'https://jitpack.io' } } } apply plugin: "com.autonomousapps.dependency-analysis" task clean(type: Delete) { delete rootProject.buildDir }