has Dokka 0.9.18 been published to the Gradle plug...
# dokka
e
has Dokka 0.9.18 been published to the Gradle plugins repo? I’m applying it via the
plugins
block and bumping from 0.9.17 doesn’t seem to work - the artifact can’t be resolved
k
It has been published to Jcenter
e
oh, I see, adding
jcenter()
to repos helped
thanks!
k
No problem 🙂
s
@semoro Could Dokka 0.9.18 be deployed in the same repositories 0.9.17 was to avoid painful migration ?
s
You can still use the same repository that you have used before Like
jcenter()
or
maven { url "<https://dl.bintray.com/kotlin/dokka>" }
The only change is that you have to put this repository to the
repositories
section, not only in
buildscript.repository
It is an intended semantic change, so it is not easy to roll it back. You can rise issue if you have some concerns about it
s
Could you give more details about that semantic change that makes necessary to specify the plugin on the regular repository side?
I am not sure to understand
k
we have added dokkaRuntime (possibility to set version of dokka runtime) and this repository section was required to make dokka work because fatjar is resolved in context of those repositories. Also from now, you can add any dokka fajar.