We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16fea9 commit 4c23907Copy full SHA for 4c23907
1 file changed
pom.xml
@@ -866,6 +866,25 @@
866
</executions>
867
</plugin>
868
869
+ <plugin>
870
+ <groupId>org.apache.maven.plugins</groupId>
871
+ <artifactId>maven-javadoc-plugin</artifactId>
872
+ <version>${maven-javadoc-plugin.version}</version>
873
+ <configuration>
874
+ <!-- Ignore missing Javadoc comments. We don't care about this as the
875
+ internals are not a public API. -->
876
+ <doclint>all,-missing</doclint>
877
+ </configuration>
878
+ <executions>
879
+ <execution>
880
+ <id>attach-javadocs</id>
881
+ <goals>
882
+ <goal>jar</goal>
883
+ </goals>
884
+ </execution>
885
+ </executions>
886
+ </plugin>
887
+
888
<plugin>
889
<!-- GPG signing of build artifacts, required by Maven
890
Central. We only enable this via a profile so that
0 commit comments