Re: javadoc and scaladoc for new layers API

2024-05-13 Thread Steve Lawrence
I think it can done by adding something like this to the unidocSettings in build.sbt: ScalaUnidoc / unidoc / unidocAllSources := (ScalaUnidoc / unidoc / unidocAllSources).value.map { sources => sources.filter { source => source.toString.contains("/api/") } } So it

Re: javadoc and scaladoc for new layers API

2024-05-13 Thread Mike Beckerle
There's some discussion of unmanagedSourceDirectories being a way of doing this online. Ultimately, I'd like all packages with "api" in their names, to get their scaladoc and javadoc generated and included. I have no idea if this is feasible. On Mon, May 13, 2024 at 1:38 PM Mike Beckerle wrote: