v2ray-plugin-android/build.gradle.kts

33 lines
728 B
Plaintext
Raw Normal View History

2020-05-24 05:45:10 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
2021-02-26 20:53:53 +08:00
id("com.github.ben-manes.versions") version "0.36.0"
2020-05-24 05:45:10 +08:00
}
buildscript {
2021-02-26 20:53:53 +08:00
val kotlinVersion = "1.4.30"
2020-05-24 05:45:10 +08:00
extra.set("kotlinVersion", kotlinVersion)
repositories {
google()
jcenter()
}
dependencies {
2021-02-26 20:53:53 +08:00
classpath("com.android.tools.build:gradle:4.1.2")
classpath("com.github.ben-manes:gradle-versions-plugin:0.36.0")
2020-05-24 05:45:10 +08:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
allprojects {
repositories {
google()
jcenter()
mavenLocal()
}
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}