taotoolbox/build.gradle

27 lines
682 B
Groovy
Raw Permalink Normal View History

2021-05-09 17:23:52 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-07-10 14:41:29 +00:00
ext.kotlin_version = "1.7.0"
ext.ktor_version = "2.0.3"
2021-05-09 17:23:52 +00:00
repositories {
google()
2021-05-10 06:14:46 +00:00
mavenCentral()
2021-05-09 17:23:52 +00:00
}
dependencies {
2022-07-10 14:41:29 +00:00
classpath 'com.android.tools.build:gradle:7.1.3'
2021-05-09 17:23:52 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2021-05-10 06:14:46 +00:00
mavenCentral()
2021-05-09 17:23:52 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}