Skip to content

Commit

Permalink
Upgrade to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Sep 15, 2023
1 parent 5174a37 commit 5bc586d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ project.afterEvaluate {
// This is especially important for inter-repo linking (e.g., via externalDocumentationLink) because the
// package-list doesn't contain enough project path information to indicate where modules' documentation are
// located.
fileLayout.set { parent, child -> parent.outputDirectory.get().resolve(child.project.name) }
fileLayout.set { parent, child ->
parent.outputDirectory.dir(child.project.name)
}

includes.from(
// NOTE: these get concatenated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ package aws.sdk.kotlin.dokka
import aws.sdk.kotlin.dokka.transformers.FilterInternalApis
import org.jetbrains.dokka.base.DokkaBase
import org.jetbrains.dokka.plugability.DokkaPlugin
import org.jetbrains.dokka.plugability.DokkaPluginApiPreview
import org.jetbrains.dokka.plugability.PluginApiPreviewAcknowledgement

/**
* Dokka plugin for customizing the AWS Kotlin SDK generated API docs
Expand All @@ -22,4 +24,7 @@ class AwsDokkaPlugin : DokkaPlugin() {
val filterInternalApis by extending {
dokkaBase.preMergeDocumentableTransformer providing ::FilterInternalApis
}

@OptIn(DokkaPluginApiPreview::class)
override fun pluginApiPreviewAcknowledgement(): PluginApiPreviewAcknowledgement = PluginApiPreviewAcknowledgement
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ smithyGradleVersion=0.6.0
smithyKotlinVersion=0.27.4

# kotlin
kotlinVersion=1.8.22
dokkaVersion=1.7.10
kotlinVersion=1.9.0
dokkaVersion=1.9.0

# kotlin JVM
kotlinJVMTargetVersion=1.8
Expand Down

0 comments on commit 5bc586d

Please sign in to comment.