tempus/build.gradle

32 lines
790 B
Groovy
Raw Normal View History

2020-11-20 15:38:08 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2021-08-14 17:06:49 +02:00
mavenCentral()
2020-11-20 15:38:08 +01:00
}
dependencies {
2023-02-18 11:41:16 +01:00
classpath 'com.android.tools.build:gradle:7.4.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20'
2020-11-20 15:38:08 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2021-08-14 17:06:49 +02:00
mavenCentral()
2021-07-25 14:39:33 +02:00
maven {
url 'https://jitpack.io'
}
maven {
2021-08-01 16:31:38 +02:00
url 'https://oss.sonatype.org/content/repositories/snapshots'
2021-07-25 14:39:33 +02:00
}
2021-08-14 17:06:49 +02:00
jcenter()
2020-11-20 15:38:08 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}