You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
887 B
39 lines
887 B
7 months ago
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
maven { url "http://dl.bintray.com/kotlin/kotlin-eap-1.1" }
|
||
|
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$test_kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id 'org.jetbrains.dokka'
|
||
|
}
|
||
|
|
||
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'org.jetbrains.dokka'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
maven {
|
||
|
url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
|
||
|
}
|
||
|
maven {
|
||
|
url "https://dl.bintray.com/kotlin/kotlin-dev"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: test_kotlin_version
|
||
|
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: test_kotlin_version
|
||
|
}
|
||
|
|
||
|
|
||
|
dokka {
|
||
|
dokkaFatJar = new File(dokka_fatjar)
|
||
|
}
|