1
1
mirror of https://github.com/Pygmalion69/OpenTopoMapViewer.git synced 2025-10-06 00:02:42 +02:00
Files
OpenTopoMapViewer/build.gradle
2025-06-15 13:12:27 +02:00

33 lines
732 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.11.0-rc02'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'https://www.jitpack.io'
}
}
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}