Thanks to all contributors that made this even better in the past year!
Unclaimed project
Are you a maintainer of GradleKotlinConverter? Claim this project to take control of your public changelog and roadmap.
Changelog
Convert from Groovy to Kotlin DSL for Gradle, focused on Android.
Thanks to all contributors that made this even better in the past year!
Also, working fine without Kscript (already was, but I only noticed now).
The script can now identify multiple plugins that are together and group them into a plugins block. This solves a lot of issues from Kotlin DSL and is the 'recommended' way of doing things.
apply(...)
apply(...)
apply(...)
now becomes
plugins {
id(...)
id(...)
id(...)
}
Additionally, there is now conversion for all org.jetbrains.kotlin:kotlin dependencies:...
[NEW] "check", "debugImplementation", "compileOnly", "testInstrumentationRunner", "signingConfig signingConfigs.release" and "ext.enableCrashlytics = true" conversions.
[Improved] Conversion for implementation/kapt/etc doesn't require the dependencies { } block anymore. Which means, you can now copy implementation '...' from GitHub and run the script without any parameters; it will read the cli...
[NEW] Kotlin stdlib, classpath and class.exclude group conversions (useful for lombok). Updated README to show all the new powers. Also, fixes a typo.
If you have any issue, please let me know!