From 6d1e25756c3e8c43ce4d5721e7665f439a19e47c Mon Sep 17 00:00:00 2001 From: Andrzej Ratajczak Date: Wed, 8 Jul 2020 10:33:26 +0200 Subject: Move common base test utils to submodule --- .../src/main/kotlin/renderers/defaultSourceSet.kt | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt (limited to 'plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt') diff --git a/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt b/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt new file mode 100644 index 00000000..7358d2c2 --- /dev/null +++ b/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt @@ -0,0 +1,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 +) -- cgit