mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 05:25:08 +01:00
17 lines
490 B
Plaintext
17 lines
490 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 "0.28.0"
|
||
|
}
|
||
|
// 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") }
|
||
|
jcenter()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.register("clean", Delete::class) {
|
||
|
delete(rootProject.buildDir)
|
||
|
}
|