Files
donext/build.gradle
Geoffroy Bonneville f7a8b99231 Migrate to latest SDK version
Fix build issues
2023-12-19 22:45:40 +01:00

35 lines
831 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.2.0'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.2.0'
// 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.buildDir
}
apply plugin: 'org.sonarqube'