mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 19:55:11 +01:00
31 lines
929 B
Plaintext
31 lines
929 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins{
|
|
id("com.github.ben-manes.versions") version BuildPluginsVersion.VERSIONS_PLUGIN
|
|
}
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath(BuildPluginsVersion.AGP)
|
|
classpath(BuildPluginsVersion.OSS_LICENSE)
|
|
classpath(BuildPluginsVersion.GOOGLE_SERVICES)
|
|
classpath(BuildPluginsVersion.ANDROID_EXTENSIONS)
|
|
classpath(BuildPluginsVersion.KOTLIN_GRADLE)
|
|
classpath(BuildPluginsVersion.KOTLINTER)
|
|
}
|
|
}
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { setUrl("https://jitpack.io") }
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
} |