Files
donext/build.gradle
2025-09-09 11:13:54 -04:00

35 lines
843 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.12.2'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}
apply plugin: 'org.sonarqube'