Merge pull request #8685 from protocolbuffers/addDokka

Adding dokka to main pom
pull/8698/head
deannagarcia 4 years ago committed by GitHub
commit 09cf1839e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      java/pom.xml

@ -228,6 +228,19 @@
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.4.32</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

Loading…
Cancel
Save