sergeshustoff/dikt

Add runtime library dependency by gradle plugin for multiplatform modules

Closed this issue · 3 comments

Currently implementation 'com.github.sergeshustoff.dikt:dikt-runtime:' is not added by plugin to multiplatform modules. Seems that if works fine others

Done in 1.0.0-alpha5

For some reason runtime library is added when gradle plugin applied old-school way with

classpath "io.github.sergeshustoff.dikt:dikt-gradle-plugin:1.0.0-alpha5"

in buildscript.dependencies. But it's not added when gradle plugin is applied in module via new plugin api like this:

plugins {
    id "io.github.sergeshustoff.dikt" version "1.0.0-alpha5"
}

fixed in 1.0.0-alpha6