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 4343 <name >bintray</name >
4444 <url >http://dl.bintray.com/kotlin/kotlin-eap-1.1</url >
4545 </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 >
4651 </pluginRepositories >
4752
4853 <developers >
5762 <properties >
5863 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
5964 <kotlin .version>1.1.0-beta-18</kotlin .version>
65+ <dokka .version>0.9.13</dokka .version>
6066 <junit .version>4.12</junit .version>
6167 <maven .compiler.source>1.6</maven .compiler.source>
6268 <maven .compiler.target>1.6</maven .compiler.target>
171177 </args >
172178 </configuration >
173179 </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 >
175203 </plugins >
176204 </build >
177205</project >
You can’t perform that action at this time.
0 commit comments