blob: 5421e92f0bd5fca5f7f1e1d3202da0c8bfb9f36b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
diff --git a/pom.xml b/pom.xml
index 7e3e806d1..765b6dea3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,6 +31,24 @@
<distribution>repo</distribution>
</license>
</licenses>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>kotlin-dev</id>
+ <url>https://dl.bintray.com/kotlin/kotlin-dev</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>kotlin-eap</id>
+ <url>https://dl.bintray.com/kotlin/kotlin-eap</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>jcenter</id>
+ <url>https://jcenter.bintray.com/</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>space</id>
+ <url>https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven/</url>
+ </pluginRepository>
+ </pluginRepositories>
<properties>
<!-- Notice: if using java 9 or 10 jres, it is possible to simply use here "8", "9" or "10". But if using java 8 jre, "8" is not an allowed value but only "1.8"-->
<jdk.version>1.8</jdk.version>
@@ -338,6 +356,19 @@
<plugins>
+ <plugin>
+ <groupId>org.jetbrains.dokka</groupId>
+ <artifactId>dokka-maven-plugin</artifactId>
+ <version>${dokka_version}</version>
+ <executions>
+ <execution>
+ <phase>pre-site</phase>
+ <goals>
+ <goal>javadoc</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<!-- give more memory for junit tests -->
<plugin>
|