Czar
09/22/2020, 4:19 PMExecution failed for task ':dokkaHtmlMultiModule'.
> Could not resolve all files for configuration ':dokkaHtmlMultiModulePlugin'.
> Cannot resolve external dependency org.jetbrains.dokka:dokka-base:1.4.10 because no repositories are defined.
Required by:
project :
I'm a bit at a loss, it was obviously running and generating module docs, but then it says it can't find itself? o_ODmitry Mishin
09/24/2020, 9:40 AMaltavir
09/26/2020, 7:42 AMRob Zienert
10/02/2020, 8:22 PMdokkaHtml
to customize the branding, or do we just need to have a separate gradle task to overlay with custom branding?Rob Zienert
10/05/2020, 8:51 PMBig Chungus
10/08/2020, 3:46 PMfirezenk
10/16/2020, 8:05 AMKris Wong
10/22/2020, 2:16 PMKris Wong
10/26/2020, 1:23 PMhandle
...jgeirega
10/28/2020, 8:03 PMGC overhead limit exceeded
sometimes.
Code can be found here: https://github.com/jgrgt/atrium/blob/dokka-upgrade/gradle/scripts/gh-pages.gradle#L36 (on that line increasing the 27 to 28 makes the time go from <1 minute to not returning after 2 minutes (I gave up after that).Animesh Sahu
11/03/2020, 3:11 AMRita Curado
11/03/2020, 6:23 PMSirNapkin1334
11/05/2020, 11:38 PMBryan Herbst
11/06/2020, 6:15 PMincludes
doesn’t seem to be getting picked up- what’s the best way to troubleshoot that? I don’t see anything in the logs that appears to be helpful, even when running with --debug
.
I’m running ./gradlew dokkaGfm
Here’s my configuration:
dokkaGfm {
def outputPath = //..
outputDirectory = file(outputPath)
dokkaSourceSets {
named("main") {
jdkVersion = 8
includes.from("README.md", "packages.md")
}
}
}
Neither README.md nor packages.md appear to be getting picked up.
If it makes a difference, this is an Android library module.addamsson
11/07/2020, 8:44 PM-modules.html
into the root directory of the resulting documentation instead of generating an index.html
file. How can I tell Dokka to create an index.html
instead? If I rename the file by hand it works, but I'd like to automate this.Will Buck
11/12/2020, 7:31 PMrbares
11/13/2020, 12:48 PMdokkaSourceSets { named("main") { ... } }
. I've managed to get includeNotPublic.set
working in that block, but sourceRoots.from
and sourceRoots.setFrom
don't do anything.Alex Ch
11/16/2020, 1:51 PMFor Environment: expected 1 page, but got 2
And rendered Javadoc with 2 rows for the Environment
sealed class.
Here's class:
public sealed class Environment(internal val url: String) {
public object QA : Environment("<https://QA>")
public object PROD : Environment("<https://PROD>")
}
As I understand, there's FallbackPageMergerStrategy
that spits out the line above, but I believe it is just a side-effect of having 2 of the same PageNode
.
Is this a real bug, or "undocumented behaviour"?
ThanksJulia Solonar
11/18/2020, 10:55 AMDProperty
?
For example:
class Color{
var r:Int = 250
}
How to get that 250
value?cb
11/18/2020, 6:06 PMexternalDocumentationLink
and has it working? I can't get anything external to linkJulia Solonar
11/20/2020, 1:43 PMSorin
11/24/2020, 3:12 PMtasks.dokkaHtmlMultiModule.configure {
outputDirectory.set(buildDir.resolve("dokkaCustomMultiModuleOutput"))
documentationFileName.set("README.md")
}
Sorin
11/24/2020, 3:13 PMtask.dokkaHtml
one. Any ideas how I can solve this? Thx.rsetkus
11/25/2020, 4:05 PMCannot change dependencies of dependency configuration ':iosArm64MainImplementationDependenciesMetadata' after task dependencies have been resolved
Anybody else experienced anything similar?cb
11/25/2020, 10:48 PMsunnat629
12/01/2020, 6:33 AMdependencies {
dokkaJavadocPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.10.2")
}
dokkaJavadoc.configure {
dokkaSourceSets {
named("main") {
noAndroidSdkLink.set(false)
}
}
}
But I am facing problem when I add a class name from another package.
Here is one example -
Clicked Url should be: dokka/javadoc/com/nativewaves/livesdk/root/NWLive.html
but the url is: dokka/javadoc/com/nativewaves/livesdk/ui/com/nativewaves/livesdk/root/NWLive.html
and also when I use like -
/**
* @see [BaseViewModel.selectedAudioEntityId]
*/
and in the JavaDoc, there is no content. It just blank in the description column.
But in DokkaHtml, it’s working.
Thanks…addamsson
12/03/2020, 9:48 PMkotlin-as-java
plugin to the Dokka plugins classpath, eg. in Gradle:
dependencies{
implementation("...")
dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:${dokka-version}")
}
Where do I put this in a multi-module multiplatform project? I'm also using .kts
, and this doesn't compile anywhere.
If any of you know anybody who can help I'm willing to pay for the proper config, I just want to get this over with as I've been struggling with Dokka for months now.Rita Curado
12/07/2020, 11:51 PMdokkajekyll
?
Thanks in advanceHarald Pehl
12/08/2020, 7:54 AM@sample
to reference sample code. Here's my setup:
• build.gradle.kts
• library code
• sample code
When running ./gradlew dokkaHtml
I get
...
Cannot find descriptor for package ChipSamples
Cannot find PsiElement corresponding to ChipSamples.chip
...
The code samples are not picked up by dokka. Neither are they visible in the documentation popups in IntelliJ projects which use my library.
Some questions I have related to dokka configuration:
• Do I have to specify a list of files or can I specify a directory in samples.from(listOf())
?
• Is the file or path in samples.from(listOf())
absolute or relative (and if so relative to what directory)?
• What am I doing wrong?
Any help, hints or comments are highly appreciated!Harald Pehl
12/08/2020, 3:22 PMHarald Pehl
12/08/2020, 3:22 PMMarcin Aman
12/09/2020, 9:05 AMHarald Pehl
12/09/2020, 11:44 AM