mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-12 21:35:18 +01:00
7d5fa5a603
updated gradle to 6.1.1 update android gradle to 4.0 add buildSrc to use kotlin for versions didnt convert them all
19 lines
577 B
Plaintext
19 lines
577 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
|
|
}
|
|
// 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)
|
|
} |