tachiyomi/build.gradle.kts
Carlos 09f366d14b update to gradle 5.6.4
update to kotlin 1.3.70
updated jsoup to 1.12.2
updated evernote android job to 1.4.2
updated sqlite-android to 3.31.0
updated junit to 4.13
updated coroutines to 1.3.3
removed packaging options since these were required for travis releases
added logic for formatter but kept it commented out
switch everything to build.kts
2020-03-07 07:08:50 -05:00

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)
}