I'm using Dokka to generate doc. It works locally, but it fails when the project runs on the server (DevOps). Here is the error I get (see below). Someone has a clue?
Do I need to specifically refer to 'dokka-fatjar' in my build.gradle or is
Copy code
plugins {
...
id 'org.jetbrains.dokka' version '0.10.1'
...
}
enough?
c
Casey Brooks
03/09/2020, 8:57 PM
It doesn’t look like it’s checking the
jcenter
repo, is it declared in your build.gradle file? It does look like it’s checking the
mavenLocal
repo, so you probably have it cached in your local .m2, which is why its working locally but not on the server