Open
Description
I recently switched from using JavaDoc {@link ...}
syntax in my ScalaDoc comments to using ScalaDoc [[..]]
syntax, after learning that genjavadoc transforms ScalaDoc links into JavaDoc links. However, now, when I look at the JavaDoc html pages, the links appear as text rather than as links, and when generating JavaDoc, the JavaDoc tool prints a lot of warning - Tag @link: reference not found:
warnings to the console.
I'm assuming that this is because the generated sources don't import the linked classes, is that correct?
I'm using Scala 2.11.2, and I'm running genjavadoc from a Gradle build script - I can post the Gradle build script if you like.