In my groovy file, I have a groovydoc link that looks like:
/**
* This links to {@link MyClassInSamePackage}
*/
def myMethod() {
}
Because the class of myMethod
is the same package as MyClassInSamePackage
, this should work, but it doesn't generate a link in the docs, rather it surrounds it in <code>
tags. I have recently opened https://issues.apache.org/jira/browse/GROOVY-5957, but according to https://issues.apache.org/jira/browse/GROOVY-3745, it looks like this issue should be fixed (I'm using groovy 2.0.5).
Can anyone confirm (or refute) whether or not links in the same package work properly in groovydoc if the full package name is not used?