javadoc: add offline links between the modules and pmd-core and pmd-test

This commit is contained in:
Andreas Dangel 2020-04-14 15:23:14 +02:00
parent 545218a0c6
commit 93ededa5c4

11
pom.xml
View File

@ -279,6 +279,17 @@
<quiet>true</quiet>
<doclint>none</doclint>
<detectOfflineLinks>false</detectOfflineLinks>
<offlineLinks>
<offlineLink>
<location>${project.basedir}/../pmd-test/target/apidocs</location>
<url>../../pmd-test/${project.version}</url>
</offlineLink>
<!-- core needs to be last, because the package "net.sourceforge.pmd.lang" is both in pmd-core and pmd-test -->
<offlineLink>
<location>${project.basedir}/../pmd-core/target/apidocs</location>
<url>../../pmd-core/${project.version}</url>
</offlineLink>
</offlineLinks>
</configuration>
</plugin>
<plugin>