aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/renderers/html/defaultSourceSet.kt
blob: 771cabaad2b8ffc04e28a6a078ef36dc7534e542 (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
package renderers.html

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

internal val defaultSourceSet = DokkaSourceSetImpl(
    moduleName = "DEFAULT",
    displayName = "DEFAULT",
    sourceSetID = "DEFAULT",
    classpath = emptyList(),
    sourceRoots = emptyList(),
    dependentSourceSets = emptyList(),
    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
)