Skip to content

Commit

Permalink
chore(): fix dsl javadoc generation (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimGl authored Nov 25, 2024
1 parent a125ae5 commit 02322ca
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions kotlin-dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<classgraph.version>4.8.171</classgraph.version>
<mockito-kotlin.version>5.4.0</mockito-kotlin.version>
<junit-pioneer.version>2.2.0</junit-pioneer.version>
<dokka-maven-plugin.version>1.9.20</dokka-maven-plugin.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -221,6 +222,41 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>${dokka-maven-plugin.version}</version>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>dokka</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>dokka-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${project.build.directory}/dokka</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 02322ca

Please sign in to comment.