eygraber
03/02/2021, 6:10 AMoutputDirectory.set(buildDir.resolve("dokka"))
But I keep getting an error using Gradle 6.8.3:
A problem occurred configuring project ':common'.
> Could not create task ':common:androidJavadocsJar'.
> Could not create task of type 'AndroidJavadocsJar'.
> Could not create task ':common:dokkaHtml'.
> No signature of method: java.io.File.resolve() is applicable for argument types: (String) values: [dokka]
Lukas K-G
03/02/2021, 7:32 AMbuildDir
is of type Path. 🤔Marcin Aman
03/02/2021, 9:27 AMeygraber
03/02/2021, 4:53 PMMarcin Aman
03/03/2021, 10:27 AMresolve
is an extension method from kotlin. I think that If you want to use something similar in groovy you would need to fallback to strings concatenation