Skip to content

Commit 9a84930

Browse files
committed
add source link configuration to Dokka Maven example
1 parent 35a5648 commit 9a84930

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

maven/dokka-maven-example/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,19 @@
5555
<phase>pre-site</phase>
5656
<goals>
5757
<goal>dokka</goal>
58+
<goal>javadoc</goal>
5859
</goals>
5960
</execution>
6061
</executions>
62+
<configuration>
63+
<sourceLinks>
64+
<link>
65+
<dir>${project.basedir}</dir>
66+
<url>https://github.com/JetBrains/kotlin-examples/blob/master/maven/dokka-maven-example</url>
67+
<urlSuffix>#L</urlSuffix>
68+
</link>
69+
</sourceLinks>
70+
</configuration>
6171
</plugin>
6272
</plugins>
6373
</build>

0 commit comments

Comments
 (0)