Files
donext/build.gradle

35 lines
843 B
Groovy
Raw Normal View History

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 {
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 {
2025-09-09 12:06:22 -04:00
classpath 'com.android.tools.build:gradle:8.13.0'
2025-09-09 11:13:54 -04:00
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
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 {
mavenCentral()
2017-12-02 19:10:35 +01:00
google()
2015-11-24 11:23:31 -05: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'