aboutsummaryrefslogtreecommitdiff
path: root/integration
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-11-14 13:32:46 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-11-23 16:57:25 +0300
commitac00e0375473a5de711f7866cb17ea5c82f4e7a5 (patch)
tree911c7c4180d1ef54c6603c833ab7d2552cb3055d /integration
parentdc7ddcc57f07fc72e2c42f820b7852dd555a2891 (diff)
downloaddokka-ac00e0375473a5de711f7866cb17ea5c82f4e7a5.tar.gz
dokka-ac00e0375473a5de711f7866cb17ea5c82f4e7a5.tar.bz2
dokka-ac00e0375473a5de711f7866cb17ea5c82f4e7a5.zip
Fix bundling of kotlin-runtime & reflect into Gradle plugin
Fix #219
Diffstat (limited to 'integration')
-rw-r--r--integration/build.gradle8
1 files changed, 5 insertions, 3 deletions
diff --git a/integration/build.gradle b/integration/build.gradle
index 55ac9dca..571ad0b3 100644
--- a/integration/build.gradle
+++ b/integration/build.gradle
@@ -7,7 +7,9 @@ buildscript {
apply plugin: 'kotlin'
dependencies {
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: kotlin_for_gradle_version
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_for_gradle_version
- compile 'com.github.yole:jkid:7d9c529c87'
+ compileOnly group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_for_gradle_version
+ compileOnly group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_for_gradle_version
+ compile('com.github.yole:jkid:7d9c529c87') {
+ transitive = false
+ }
} \ No newline at end of file