aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt
blob: 7358d2c29a06f32b92193025687f288eb462fa77 (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
package renderers

import org.jetbrains.dokka.DokkaSourceSetID
import org.jetbrains.dokka.DokkaSourceSetImpl
import org.jetbrains.dokka.Platform

val defaultSourceSet = DokkaSourceSetImpl(
    moduleDisplayName = "DEFAULT",
    displayName = "DEFAULT",
    sourceSetID = DokkaSourceSetID("DEFAULT", "DEFAULT"),
    classpath = emptyList(),
    sourceRoots = emptyList(),
    dependentSourceSets = emptySet(),
    samples = emptyList(),
    includes = emptyList(),
    includeNonPublic = false,
    includeRootPackage = false,
    reportUndocumented = false,
    skipEmptyPackages = true,
    skipDeprecated = false,
    jdkVersion = 8,
    sourceLinks = emptyList(),
    perPackageOptions = emptyList(),
    externalDocumentationLinks = emptyList(),
    languageVersion = null,
    apiVersion = null,
    noStdlibLink = false,
    noJdkLink = false,
    suppressedFiles = emptyList(),
    analysisPlatform = Platform.DEFAULT
)