I've two jars, one for interfaces and one for implementations. For example in the first jar i have:
package com.myapp.jar1
public inteface MyInterface {...}
in the second jar I have
package com.myapp.jar2
import com.myapp.jar1.MyInterface
public class MyClass implements MyInterface {...}
When javadocs are created via maven, the reference to the class in the same package are converted in links (as expected) while the reference to the class in the other package is simple text.
I suppose the problem is that javadoc doesn't know where and who is MyInterface.
Does exists a way to inform javadoc to check in other packages for doc?
Details:
In Apache I have a dir javadoc
and i unzip there all my jars:
/var/www/html/javadoc/jar1
/var/www/html/javadoc/jar2
So my link would point to another position in the same server or to an external resource if is a third-produced package (for example Jackson)