diff options
| author | Kamil Doległo <kamilok1965@interia.pl> | 2019-06-06 14:50:13 +0200 |
|---|---|---|
| committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-06-06 14:50:13 +0200 |
| commit | 993b8fe11d9ca566fdfab997489fcc948182aae5 (patch) | |
| tree | 12bc586b12f00a695993e3eab523ee4d17abaa3a /runners/gradle-integration-tests/testData/basic | |
| parent | 5aace9a4633f95a45f9ffd7f1cf8e833e573e489 (diff) | |
| download | dokka-993b8fe11d9ca566fdfab997489fcc948182aae5.tar.gz dokka-993b8fe11d9ca566fdfab997489fcc948182aae5.tar.bz2 dokka-993b8fe11d9ca566fdfab997489fcc948182aae5.zip | |
Fix some bugs
Diffstat (limited to 'runners/gradle-integration-tests/testData/basic')
| -rw-r--r-- | runners/gradle-integration-tests/testData/basic/build.gradle | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runners/gradle-integration-tests/testData/basic/build.gradle b/runners/gradle-integration-tests/testData/basic/build.gradle index 85e86748..b6f85604 100644 --- a/runners/gradle-integration-tests/testData/basic/build.gradle +++ b/runners/gradle-integration-tests/testData/basic/build.gradle @@ -29,12 +29,15 @@ repositories { } dependencies { + defaultDokkaRuntime files(dokka_fatjar) 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 = files(dokka_fatjar) - classpath += files("$projectDir/classDir") + dokkaFatJar = dokka_fatjar + configuration { + classpath += "$projectDir/classDir" + } }
\ No newline at end of file |
