I am working through <http://beust.com/kobalt/plug...
# kobalt
r
I am working through http://beust.com/kobalt/plug-in-development/index.html and am at the section where it recommends text in Build.kt of the form:
Copy code
val dev = false
val kobaltDependency = if (dev) "kobalt" else "kobalt-plugin-api"
 
val p = project {
    // ...
 
    compile("com.beust:$kobaltDependency:$KOBALT_VERSION")
}
It seems, though, as if the last version of
Copy code
kobalt-plugin-api
it can resolve is 1.0.8, whereas the last version of
Copy code
kobalt
it can resolve is 0.930. I may be missing something simple but I couldn't figure out how to get it to use the latest version of Kobalt here.