File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 43
43
<name >bintray</name >
44
44
<url >http://dl.bintray.com/kotlin/kotlin-eap-1.1</url >
45
45
</pluginRepository >
46
+ <pluginRepository >
47
+ <id >bintray-kotlin-dokka</id >
48
+ <name >bintray-kotlin-dokka</name >
49
+ <url >http://dl.bintray.com/kotlin/dokka</url >
50
+ </pluginRepository >
46
51
</pluginRepositories >
47
52
48
53
<developers >
57
62
<properties >
58
63
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
59
64
<kotlin .version>1.1.0-beta-18</kotlin .version>
65
+ <dokka .version>0.9.13</dokka .version>
60
66
<junit .version>4.12</junit .version>
61
67
<maven .compiler.source>1.6</maven .compiler.source>
62
68
<maven .compiler.target>1.6</maven .compiler.target>
171
177
</args >
172
178
</configuration >
173
179
</plugin >
174
-
180
+ <plugin >
181
+ <groupId >org.jetbrains.dokka</groupId >
182
+ <artifactId >dokka-maven-plugin</artifactId >
183
+ <version >${dokka.version} </version >
184
+ <executions >
185
+ <execution >
186
+ <phase >pre-site</phase >
187
+ <goals >
188
+ <goal >dokka</goal >
189
+ </goals >
190
+ </execution >
191
+ </executions >
192
+ <configuration >
193
+ <sourceLinks >
194
+ <link >
195
+ <dir >${project.basedir} /src/main/kotlin</dir >
196
+ <url >http://github.com/kotlin/kotlinx.coroutines/tree/master/${project.artifactId} /src/main/kotlin</url >
197
+ <urlSuffix >#L</urlSuffix >
198
+ </link >
199
+ </sourceLinks >
200
+ <outputFormat >gfm</outputFormat >
201
+ </configuration >
202
+ </plugin >
175
203
</plugins >
176
204
</build >
177
205
</project >
You can’t perform that action at this time.
0 commit comments