diff options
author | KrystianUjma <kujma@virtuslab.com> | 2019-05-07 18:19:24 +0200 |
---|---|---|
committer | KrystianUjma <kujma@virtuslab.com> | 2019-05-07 18:19:24 +0200 |
commit | 9b4217cd81ad088e08f39600791495d5a3e230c4 (patch) | |
tree | d9898866f79be70ff6e1e49768971601b469e852 /runners/maven-plugin | |
parent | d1937ab65bef189a48a55218a4194c0afb778053 (diff) | |
download | dokka-9b4217cd81ad088e08f39600791495d5a3e230c4.tar.gz dokka-9b4217cd81ad088e08f39600791495d5a3e230c4.tar.bz2 dokka-9b4217cd81ad088e08f39600791495d5a3e230c4.zip |
remove multiplatform suport for maven
Diffstat (limited to 'runners/maven-plugin')
-rw-r--r-- | runners/maven-plugin/src/main/kotlin/DokkaMojo.kt | 230 |
1 files changed, 101 insertions, 129 deletions
diff --git a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt index ca3a65fd..650f268f 100644 --- a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt +++ b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt @@ -14,23 +14,23 @@ import org.jetbrains.dokka.* import java.io.File import java.net.URL -class SourceLinkMapItem : DokkaConfiguration.SourceLinkDefinition { +class SourceLinkMapItem { @Parameter(name = "path", required = true) - override var path: String = "" + var path: String = "" @Parameter(name = "url", required = true) - override var url: String = "" + var url: String = "" @Parameter(name = "lineSuffix") - override var lineSuffix: String? = null + var lineSuffix: String? = null } -class ExternalDocumentationLink : DokkaConfiguration.ExternalDocumentationLink { +class ExternalDocumentationLinkBuilder : DokkaConfiguration.ExternalDocumentationLink.Builder() { @Parameter(name = "url", required = true) - override var url: URL = URL("") + override var url: URL? = null @Parameter(name = "packageListUrl", required = true) - override var packageListUrl: URL = URL("") + override var packageListUrl: URL? = null } abstract class AbstractDokkaMojo : AbstractMojo() { @@ -52,178 +52,150 @@ abstract class AbstractDokkaMojo : AbstractMojo() { override var suppress: Boolean = false } - class Multiplatform : DokkaConfiguration.PassConfiguration { - @Parameter(required = true, defaultValue = "\${project.compileSourceRoots}") - var sourceDirectories: List<String> = emptyList() - - @Parameter(required = true, defaultValue = "\${project.artifactId}") - override var moduleName: String = "" - - @Parameter(required = true, defaultValue = "\${project.compileClasspathElements}") - override var classpath: List<String> = emptyList() - - @Parameter - override var sourceRoots: List<SourceRoot> = emptyList() + @Parameter(required = true, defaultValue = "\${project.compileSourceRoots}") + var sourceDirectories: List<String> = emptyList() - @Parameter - override val samples: List<String> = emptyList() + @Parameter + var sourceRoots: List<SourceRoot> = emptyList() - @Parameter - override val includes: List<String> = emptyList() + @Parameter + var samples: List<String> = emptyList() - @Parameter - override val includeNonPublic: Boolean = false + @Parameter + var includes: List<String> = emptyList() - @Parameter - override val includeRootPackage: Boolean = false + @Parameter(required = true, defaultValue = "\${project.compileClasspathElements}") + var classpath: List<String> = emptyList() - @Parameter - override val reportUndocumented: Boolean = true - @Parameter - override val skipEmptyPackages: Boolean = true + @Parameter + var sourceLinks: List<SourceLinkMapItem> = emptyList() - @Parameter - override val skipDeprecated: Boolean = false + @Parameter(required = true, defaultValue = "\${project.artifactId}") + var moduleName: String = "" - @Parameter(required = false, defaultValue = "6") - override var jdkVersion: Int = 6 + @Parameter(required = false, defaultValue = "false") + var skip: Boolean = false - @Parameter - override val sourceLinks: List<SourceLinkMapItem> = emptyList() + @Parameter(required = false, defaultValue = "6") + var jdkVersion: Int = 6 - @Parameter - override val perPackageOptions: List<PackageOptions> = emptyList() + @Parameter + var skipDeprecated: Boolean = false + @Parameter + var skipEmptyPackages: Boolean = true + @Parameter + var reportUndocumented: Boolean = true - @Parameter - override val externalDocumentationLinks: List<ExternalDocumentationLink> = emptyList() + @Parameter + var impliedPlatforms: List<String> = emptyList() - @Parameter - override val languageVersion: String? = null + @Parameter + var perPackageOptions: List<PackageOptions> = emptyList() - @Parameter - override val apiVersion: String? = null + @Parameter + var externalDocumentationLinks: List<ExternalDocumentationLinkBuilder> = emptyList() - @Parameter(defaultValue = "false") - override var noStdlibLink: Boolean = false + @Parameter(defaultValue = "false") + var noStdlibLink: Boolean = false - @Parameter(defaultValue = "false") - override var noJdkLink: Boolean = false + @Parameter(defaultValue = "false") + var noJdkLink: Boolean = false - @Parameter - override val suppressedFiles: List<String> = emptyList() + @Parameter + var cacheRoot: String? = null - @Parameter - override val collectInheritedExtensionsFromLibraries: Boolean = false + @Parameter + var languageVersion: String? = null - override var analysisPlatform: Platform = Platform.DEFAULT + @Parameter + var apiVersion: String? = null - @Parameter - val platform: String = "" + @Parameter + var includeRootPackage: Boolean = false - @Parameter - override val targets: List<String> = emptyList() + @Parameter + var suppressedFiles: List<String> = emptyList() - @Parameter - override val sinceKotlin: String = "1.0" - } + @Parameter + var collectInheritedExtensionsFromLibraries: Boolean = false @Parameter - var multiplatform: List<Multiplatform> = emptyList() + var platform: String = "" @Parameter - var config: Multiplatform? = null + var targets: List<String> = emptyList() - @Parameter(required = true, defaultValue = "\${project.artifactId}") - var moduleName: String = "" + @Parameter + var sinceKotlin: String = "1.0" @Parameter - var impliedPlatforms: List<String> = emptyList() //TODO check + var includeNonPublic: Boolean = false @Parameter - var cacheRoot: String? = null + var generateIndexPages: Boolean = false protected abstract fun getOutDir(): String protected abstract fun getOutFormat(): String - @Parameter(required = false, defaultValue = "false") - var skip: Boolean = false - - @Parameter(required = true, defaultValue = "\${project.compileClasspathElements}") - var classpath: List<String> = emptyList() - - //TODO remove - @Parameter(required = true, defaultValue = "\${project.compileSourceRoots}") - var sourceDirectories: List<String> = emptyList() - @Parameter(required = false, defaultValue = "6") - val jdkVersion: Int = 6 - @Parameter(defaultValue = "false") - val noStdlibLink: Boolean = false - @Parameter(defaultValue = "false") - val noJdkLink: Boolean = false - override fun execute() { if (skip) { log.info("Dokka skip parameter is true so no dokka output will be produced") return } - val passConfigurationList = ( - if (multiplatform.isEmpty() && config != null) listOf(config!!) else multiplatform - ).map { - defaultPassConfiguration(it) - } - - passConfigurationList.flatMap { it.sourceLinks }.forEach { + sourceLinks.forEach { if (it.path.contains("\\")) { throw MojoExecutionException("Incorrect path property, only Unix based path allowed.") } } - val platforms = impliedPlatforms - val cacheRoot = cacheRoot - - val configuration = object : DokkaConfiguration { - override val outputDir = getOutDir() - override val format = getOutFormat() - override val impliedPlatforms = platforms - override val cacheRoot = cacheRoot - override val passesConfigurations = passConfigurationList - override val generateIndexPages = false // TODO: Should we implement this? - } + val passConfiguration = PassConfigurationImpl( + classpath = classpath, + sourceRoots = sourceDirectories.map { SourceRootImpl(it) } + sourceRoots.map { SourceRootImpl(path = it.path) }, + samples = samples, + includes = includes, + collectInheritedExtensionsFromLibraries = collectInheritedExtensionsFromLibraries, // TODO: Should we implement this? + sourceLinks = sourceLinks.map { SourceLinkDefinitionImpl(it.path, it.url, it.lineSuffix) }, + jdkVersion = jdkVersion, + skipDeprecated = skipDeprecated, + skipEmptyPackages = skipEmptyPackages, + reportUndocumented = reportUndocumented, + perPackageOptions = perPackageOptions.map { + PackageOptionsImpl( + prefix = it.prefix, + includeNonPublic = it.includeNonPublic, + reportUndocumented = it.reportUndocumented, + skipDeprecated = it.skipDeprecated, + suppress = it.suppress + )}, + externalDocumentationLinks = externalDocumentationLinks.map { it.build() as ExternalDocumentationLinkImpl }, + noStdlibLink = noStdlibLink, + noJdkLink = noJdkLink, + languageVersion = languageVersion, + apiVersion = apiVersion, + moduleName = moduleName, + suppressedFiles = suppressedFiles, // TODO: Should we implement this? + sinceKotlin = sinceKotlin, // TODO: Should we implement this? + analysisPlatform = if (platform.isNotEmpty()) Platform.fromString(platform) else Platform.DEFAULT, // TODO: Should we implement this? + targets = targets, // TODO: Should we implement this? + includeNonPublic = includeNonPublic, // TODO: Should we implement this? + includeRootPackage = includeRootPackage // TODO: Should we implement this? + ) + + val configuration = DokkaConfigurationImpl( + outputDir = getOutDir(), + format = getOutFormat(), + impliedPlatforms = impliedPlatforms, + cacheRoot = cacheRoot, + passesConfigurations = listOf(passConfiguration), + generateIndexPages = generateIndexPages // TODO: Should we implement this? + ) val gen = DokkaGenerator(configuration, MavenDokkaLogger(log)) gen.generate() } - - private fun defaultPassConfiguration(passConfig: Multiplatform): Multiplatform { - passConfig.moduleName = moduleName - passConfig.classpath = classpath - passConfig.externalDocumentationLinks.map { - val builder = DokkaConfiguration.ExternalDocumentationLink.Builder(it.url, it.packageListUrl) - builder.build() - } - if(passConfig.platform.isNotEmpty()){ - passConfig.analysisPlatform = Platform.fromString(passConfig.platform) - } - // TODO fix - passConfig.sourceRoots = sourceDirectories.map { - val sourceRoot = SourceRoot() - sourceRoot.path = it - sourceRoot - } + passConfig.sourceRoots - passConfig.jdkVersion = jdkVersion - passConfig.noStdlibLink = noStdlibLink - passConfig.noJdkLink = noJdkLink -// passConfig.sourceRoots = passConfig.sourceDirectories.map { -// val sourceRoot = SourceRoot() -// sourceRoot.path = it -// sourceRoot -// } + passConfig.sourceRoots - - return passConfig - } } @Mojo(name = "dokka", defaultPhase = LifecyclePhase.PRE_SITE, threadSafe = true, requiresDependencyResolution = ResolutionScope.COMPILE, requiresProject = true) |