bernaferrari / GradleKotlinConverter

Convert from Groovy to Kotlin DSL for Gradle, focused on Android.
https://gradle-kotlin-converter.vercel.app
Apache License 2.0
921 stars 61 forks source link

developmentOnly / runtimeOnly #17

Closed lathspell closed 4 years ago

lathspell commented 4 years ago

your script could not transform dependencies of the types developmentOnly and runtimeOnly.

Even if it those are custom configurations it should treat everything inside "dependencies" the same.

Example:

configurations {
    developmentOnly // for dependencies that are needed for development only
}
dependencies {
      developmentOnly "net.java.dev.jna:jna:5.5.0"
    developmentOnly "io.methvin:directory-watcher:0.9.9"
    ...
}