1
0
mirror of https://codeberg.org/gitnex/GitNex.git synced 2025-10-05 15:52:46 +02:00
Files
GitNex/build.gradle
2025-07-13 09:45:40 +02:00

25 lines
473 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.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}