Comment by jankotek [Kotlin/dokka] New comment on...
# dokka
u
Comment by jankotek [Kotlin/dokka] New comment on issue #39: Doc from Java files not included Maven project, but I also tried command line fat jar with the same result. Both java and kotlin files are in
src/main/java
. It will be on github next week. Relevant pom:
Copy code
<dokka.version>0.9.3</dokka.version>
...
   <!-- required for Dokka (Kotlin javadoc) -->
    <pluginRepositories>
        <pluginRepository>
            <id>jcenter</id>
            <name>JCenter</name>
            <url><https://jcenter.bintray.com/</url>>
            <releases>
                <enabled>true</enabled>
            </releases>
        </pluginRepository>
    </pluginRepositories>
....
            <plugin>
                <groupId>org.jetbrains.dokka</groupId>
                <artifactId>dokka-maven-plugin</artifactId>
                <version>${dokka.version}</version>
                <executions>
                    <execution>
                        <phase>pre-site</phase>
                        <goals>
                            <goal>dokka</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>