aboutsummaryrefslogtreecommitdiff
path: root/runners/gradle-integration-tests/testData/multiProjectSingleOut/build.gradle
blob: 0ea86d4cfc4733d403070fa7ef82a8f2fd2192e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
plugins {
    id 'org.jetbrains.dokka'
}

subprojects {
    buildscript {
        repositories {
            mavenCentral()
            jcenter()
            maven { url "https://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"
        }
    }
    repositories {
        mavenCentral()
        jcenter()
        maven { url "https://dl.bintray.com/kotlin/kotlin-eap-1.1" }
        maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
    }
}

dependencies {
    dokkaRuntime files(dokka_fatjar)
}

apply plugin: 'org.jetbrains.dokka'

dokka {
    configuration {
        kotlinTasks {
            [":subA:compileKotlin", ":subB:compileKotlin"]
        }
    }
}