Sounds like I've missed that, but: 1. How do I bui...
# kontributors
m
Sounds like I've missed that, but: 1. How do I build the Kotlin locally and use it in another project, especially given that gradle discouragers from using mavenLocal? I could use a cli kotlinc, but I aim for full gradle plugin, to write something like
plugins { kolin("js") version "1.5.30.1234-local" }
, if that's even possible, this is. 2. Can I use the latest dev/nightly builds like build-1.5.30-dev-2088 which I see are frequent on github release page? Kotlin itself uses those to bootstrap itself and I have tried adding some of the gradle dependency links from the repo, but with no luck.
r
For local builds, you should either use
mavenLocal()
(definitely not for production or anything important, but playing with local builds like this is a valid use for it) or included builds (which is generally the better solution, but I have not tried it with Kotlin itself).