aniyomi-extensions-backup/build.gradle.kts
Claudemirovsky 62f45e094d
[skip ci] Update dependencies (#1343)
* Bump harmless dependencies

Note that bumping the android plugin will make compilation show lots of
"hey bro use namespace instead of AndroidManifest.xml" warnings

* Remove duktape dependency

Zero extensions are using it, so its safe to remove. For executing js in
extensions we can use quickjs instead of ducktape.

* Upgrade gradle to 7.6

* Update kotlin

* Update OkHttp

* Update JSoup

Jesus Christ this was boring asf

* Update KtLint

* [skip ci] refactor on some build.gradle.kts files

* Expose coroutines to all extension by default
2023-02-28 14:12:46 +01:00

11 lines
294 B
Plaintext

plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kotlinter) apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}