-
Notifications
You must be signed in to change notification settings - Fork 35
Description
The pom-scijava-base ancestor POM includes configuration hardcoding several links for the javadoc tool. This configuration makes classes for SciJava-based projects clickable, pointing uniformly to javadoc.scijava.org endpoints aggregating multiple components. For example, the URL https://javadoc.scijava.org/SciJava/ includes javadoc for many components in the scijava GitHub org with groupId org.scijava
. The general pattern is "Maven groupId = GitHub org = javadoc.scijava.org endpoint".
Problems
-
Reproducibility. The javadoc.scijava.org endpoints are not reproducible. They are like SNAPSHOTs, always serving the latest javadoc. Properly, we should be linking to stable API javadoc corresponding to the versions depended upon by each built project. Otherwise, rebuilding the javadoc later will produce a different result, and potentially javadoc build errors if e.g. a class was later removed.
-
Performance. The more
<link>
entries hardcoded by pom-scijava-base, the longer everyone's javadoc builds take, because the javadoc tool scrapes the index from each linked URL. -
Extensibility. Projects wanting to extend their javadoc with links other than what pom-scijava-base hardcodes must add those links manually to their project POMs.
-
Separation of concerns. The pom-scijava-base should not be hardcoding links related to components from the pom-scijava BOM. Or to put another way: the list of javadoc links should be defined here in pom-scijava, and fully correspond to all the components managed here.
Solutions
How to extend a project POM with more links
The following block adds more javadoc URL links:
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links combine.children="append">
<link>https://javadoc.io/static/commons-io/commons-io/${commons-io.version}</link>
<link>https://javadoc.io/static/org.ojalgo/ojalgo/${ojalgo.version}</link>
</links>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
How to achieve link reproducibility
Note the use of the wonderful javadoc.io
service to link reproducibly to individual component javadoc available from Maven Central! I think javadoc.io
is the nicest way forward for reproducible javadoc permalinks. We don't have to deploy our own javadoc infrastructure—just continue working toward publishing as many of our artifacts as possible to Maven Central as they mature.
How to balance javadoc build times with correct linking
Firstly: we shouldn't unilaterally add javadoc links for the entire component collection. I tried updating pom-scijava to use granular javadoc.io links instead of our fuzzy aggregating javadoc.scijava.org links. This changed the configuration from 37 unstable (javadoc.scijava.org) links to 231 stable ones (javadoc.io). Unfortunately, javadoc build time appears to scale pretty much linearly with this number: 0 links -> 11s; 37 links -> 48s; 231 links -> 215s.
Therefore, every project should include links in its javadoc configuration matching its direct dependencies. (Assuming a project's dependencies are structured correctly, with mvn dependency:analyze
not reporting problems: transitive dependencies are not part of the project's public API, and thus no such links will be needed for that project's javadoc.)
It would be nice is the maven-javadoc-plugin had a feature that did this automatically. The <detectLinks>
option is almost what we need—but because there is no way to know what remote javadoc URL you want for each given groupId:artifactId
dependency, it uses a simple heuristic, ${project.url}/apidocs
, which will fail for the vast majority of components.
Conclusion
We could enhance the maven-javadoc-plugin to support configuration declaring a mapping from groupId:artifactId to javadoc link URL, with the <detectLinks>
feature using this mapping preferentially when discerning the links. For performance, we would need to double check that <detectLinks>
only includes links for direct dependencies, not transitive ones—or else add a flag controlling this behavior.