2015-11-24 11:23:31 -05:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2023-12-19 22:45:40 +01:00
|
|
|
mavenCentral()
|
2017-12-02 19:10:35 +01:00
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com/'
|
|
|
|
name 'Google'
|
|
|
|
}
|
2018-06-18 08:45:53 +00:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2018-05-25 20:23:56 +02:00
|
|
|
google()
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-08-24 12:11:20 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:8.5.2'
|
2023-12-19 22:45:40 +01:00
|
|
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.2.0'
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2023-12-19 22:45:40 +01:00
|
|
|
mavenCentral()
|
2017-12-02 19:10:35 +01:00
|
|
|
google()
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-19 22:45:40 +01:00
|
|
|
tasks.register('clean', Delete) {
|
2024-07-11 11:20:05 +02:00
|
|
|
delete rootProject.layout.buildDirectory
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
2018-11-08 15:06:51 +01:00
|
|
|
|
|
|
|
apply plugin: 'org.sonarqube'
|