maven-javadoc-plugin and inheritDoc for Java API core classes
问题 I am writing my own Java 8 Stream implementation and want to inherit the Javadocs from the original java.util.stream.Stream interface. However I cannot get it working. The generated Javadoc does only show my documentation but not the documentation from the extended Stream interface. So for example, the javadoc of this method does only contain the text "Some additional information" but not the documentation from the Stream interface. /** * {@inheritDoc} * Some additional information. */