2017-08-27 15:47:32 -07:00
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.1.3'
|
|
|
|
ext.dokka_version = '0.9.15'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-12 21:10:43 -07:00
|
|
|
subprojects {
|
2017-07-28 17:22:03 -07:00
|
|
|
|
2017-08-12 21:10:43 -07:00
|
|
|
apply plugin: 'java'
|
2017-08-27 15:47:32 -07:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'org.jetbrains.dokka'
|
2017-07-28 17:22:03 -07:00
|
|
|
|
2017-08-12 21:10:43 -07:00
|
|
|
repositories {
|
2017-08-14 19:03:52 -07:00
|
|
|
mavenCentral()
|
2017-08-12 21:10:43 -07:00
|
|
|
}
|
2017-08-13 01:51:53 -07:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.3"
|
|
|
|
}
|
2017-07-28 17:22:03 -07:00
|
|
|
}
|
|
|
|
|