Skip to content

Commit

Permalink
Kotlin module documentation is now generated with Dokka
Browse files Browse the repository at this point in the history
  • Loading branch information
slu-it committed Jun 16, 2017
1 parent ed326f8 commit 9bba058
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,6 @@
<requirePluginVersions/>
<!-- all-dependency-versions-must-converge -->
<dependencyConvergence/>
<!-- no-custom-repositories-are-needed -->
<requireNoRepositories/>
<!-- no-distribution-management-in-poms -->
<banDistributionManagement/>
</rules>
Expand Down
22 changes: 22 additions & 0 deletions webtester-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<properties>
<version.kotlin>1.1.2</version.kotlin>
<version.dokka>0.9.14</version.dokka>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
</properties>

Expand Down Expand Up @@ -111,6 +112,19 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>${version.dokka}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
Expand All @@ -122,4 +136,12 @@
</plugins>
</build>

<pluginRepositories>
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit 9bba058

Please sign in to comment.