diff options
| author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-01-29 19:53:23 +0300 |
|---|---|---|
| committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-01-29 19:53:23 +0300 |
| commit | 56213b9d66a78fdd35c2826c6edc3f36d491ff32 (patch) | |
| tree | d03c32e5928c4e1aa2e06f0abbd69f7cc4119855 /integration | |
| parent | 4a425e29fba4030d9cde7072ee6bf39ab7ae3668 (diff) | |
| download | dokka-56213b9d66a78fdd35c2826c6edc3f36d491ff32.tar.gz dokka-56213b9d66a78fdd35c2826c6edc3f36d491ff32.tar.bz2 dokka-56213b9d66a78fdd35c2826c6edc3f36d491ff32.zip | |
Update Gradle Kotlin Runtime dependencies version to 1.1
Dokka drops support for Gradle less then 3.5
Diffstat (limited to 'integration')
| -rw-r--r-- | integration/build.gradle | 2 | ||||
| -rw-r--r-- | integration/src/main/kotlin/org/jetbrains/dokka/ReflectDsl.kt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/integration/build.gradle b/integration/build.gradle index 32ca3454..026cfbc0 100644 --- a/integration/build.gradle +++ b/integration/build.gradle @@ -12,7 +12,7 @@ sourceCompatibility = 1.8 tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { languageVersion = "1.2" - apiVersion = "1.0" + apiVersion = "1.1" jvmTarget = "1.8" } } diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/ReflectDsl.kt b/integration/src/main/kotlin/org/jetbrains/dokka/ReflectDsl.kt index 3c9bf156..1984a3e5 100644 --- a/integration/src/main/kotlin/org/jetbrains/dokka/ReflectDsl.kt +++ b/integration/src/main/kotlin/org/jetbrains/dokka/ReflectDsl.kt @@ -1,6 +1,8 @@ package org.jetbrains.dokka import kotlin.reflect.* +import kotlin.reflect.full.memberFunctions +import kotlin.reflect.full.memberProperties import kotlin.reflect.jvm.isAccessible object ReflectDsl { |
