Description
When I generate groovydocs for the following class:
FooAdapter.groovy
import api.Foo import lib.Foo as FooImpl class FooAdapter implements Foo { FooAdapter(FooImpl foo) {} }
where some API defines:
api/Foo.java
package api; public interface Foo {}
and some library defines:
lib/Foo.java
package lib; public class Foo {}
then in the documentation the implemented interface "Foo" links to lib/Foo.html instead of api/Foo.html.