Skip to content

Commit

Permalink
Generate jar of javadoc/kotlin-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
davy-claisse committed Jul 31, 2018
1 parent 45b2cda commit 596fdee
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion activejdbc-kt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<!-- Kotlin version -->
<kotlin.version>1.2.41</kotlin.version>
<kotlin.version>1.2.51</kotlin.version>
<kotlin.compiler.languageVersion>1.2</kotlin.compiler.languageVersion>

<!-- Kotlin version -->
Expand Down Expand Up @@ -43,6 +43,14 @@
</profile>
</profiles>

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

<build>
<testResources>
<testResource>
Expand All @@ -55,6 +63,20 @@
<testSourceDirectory>${kotlin.test}</testSourceDirectory>

<plugins>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>0.9.17</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
Expand Down

0 comments on commit 596fdee

Please sign in to comment.