Skip to content

Commit

Permalink
Merge pull request #17009 from gsmet/fix-kotlin-module-javadoc
Browse files Browse the repository at this point in the history
Add Javadoc for RESTEasy Reactive Kotlin
  • Loading branch information
gsmet authored May 8, 2021
2 parents 3a2b3aa + 98f655a commit 5040fda
Showing 1 changed file with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,37 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.4.32</version>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
<configuration>
<jdkVersion>11</jdkVersion>
<outputFormat>html</outputFormat>
<externalDocumentationLinks>
<link>
<!-- Root URL of the generated documentation to link with. The trailing slash is required! -->
<url>https://docs.oracle.com/en/java/javase/11/docs/api/</url>
</link>
</externalDocumentationLinks>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5040fda

Please sign in to comment.