I can't seem to generate Javadocs or KDocs with Maven. I tried both:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<excludePackageNames>*.internal</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kdoc-maven-plugin</artifactId>
<version>${kotlin.version}</version>
</plugin>
but no mattter how I try, I never see the Javadocs generated in target/, which is a problem since without them, I can’t push anything to Maven central.
Am I missing something obvious?
–
Cédric