Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions runtime/auth/aws-credentials/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-credentials"
}
Comment on lines +33 to +36
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: Could we replace all of these per-module declarations with a top-level block instead?

subprojects {
    dokka {
        modulePath = this@subprojects.name
    }
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly, thanks, I'll take a look at the simplification

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is a PR with the simplification, thanks! #1299

4 changes: 4 additions & 0 deletions runtime/auth/aws-signing-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-signing-common"
}
4 changes: 4 additions & 0 deletions runtime/auth/aws-signing-crt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-signing-crt"
}
4 changes: 4 additions & 0 deletions runtime/auth/aws-signing-default/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-signing-default"
}
4 changes: 4 additions & 0 deletions runtime/auth/aws-signing-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-signing-tests"
}
4 changes: 4 additions & 0 deletions runtime/auth/http-auth-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-auth-api"
}
4 changes: 4 additions & 0 deletions runtime/auth/http-auth-aws/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-auth-aws"
}
4 changes: 4 additions & 0 deletions runtime/auth/http-auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-auth"
}
4 changes: 4 additions & 0 deletions runtime/auth/identity-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ kotlin {
}
}
}

dokka {
modulePath = "identity-api"
}
4 changes: 4 additions & 0 deletions runtime/crt-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ kotlin {
}
}
}

dokka {
modulePath = "crt-util"
}
4 changes: 4 additions & 0 deletions runtime/observability/logging-slf4j2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ kotlin {
}
}
}

dokka {
modulePath = "logging-slf4j2"
}
4 changes: 4 additions & 0 deletions runtime/observability/telemetry-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ kotlin {
}
}
}

dokka {
modulePath = "telemetry-api"
}
4 changes: 4 additions & 0 deletions runtime/observability/telemetry-defaults/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ kotlin {
}
}
}

dokka {
modulePath = "telemetry-defaults"
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ kotlin {
}
}
}

dokka {
modulePath = "telemetry-provider-micrometer"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ kotlin {
}
}
}

dokka {
modulePath = "telemetry-provider-otel"
}
4 changes: 4 additions & 0 deletions runtime/protocol/aws-event-stream/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-event-stream"
}
4 changes: 4 additions & 0 deletions runtime/protocol/aws-json-protocols/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-json-protocols"
}
4 changes: 4 additions & 0 deletions runtime/protocol/aws-protocol-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-protocol-core"
}
4 changes: 4 additions & 0 deletions runtime/protocol/aws-xml-protocols/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ kotlin {
}
}
}

dokka {
modulePath = "aws-xml-protocols"
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-client-engine-crt"
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-client-engine-default"
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-client-engine-okhttp"
}
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,7 @@ tasks.jvmTest {
gradle.buildFinished {
startTestServers.stop()
}

dokka {
modulePath = "test-suite"
}
4 changes: 4 additions & 0 deletions runtime/protocol/http-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-client"
}
4 changes: 4 additions & 0 deletions runtime/protocol/http-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http-test"
}
4 changes: 4 additions & 0 deletions runtime/protocol/http/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ kotlin {
}
}
}

dokka {
modulePath = "http"
}
4 changes: 4 additions & 0 deletions runtime/protocol/smithy-rpcv2-protocols/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ kotlin {
}
}
}

dokka {
modulePath = "smithy-rpcv2-protocols"
}
4 changes: 4 additions & 0 deletions runtime/runtime-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ kotlin {
}
}
}

dokka {
modulePath = "runtime-core"
}
4 changes: 4 additions & 0 deletions runtime/serde/serde-cbor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ kotlin {
}
}
}

dokka {
modulePath = "serde-cbor"
}
4 changes: 4 additions & 0 deletions runtime/serde/serde-form-url/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ kotlin {
}
}
}

dokka {
modulePath = "serde-form-url"
}
4 changes: 4 additions & 0 deletions runtime/serde/serde-json/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ kotlin {
}
}
}

dokka {
modulePath = "serde-json"
}
4 changes: 4 additions & 0 deletions runtime/serde/serde-xml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ kotlin {
}
}
}

dokka {
modulePath = "serde-xml"
}
4 changes: 4 additions & 0 deletions runtime/smithy-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ kotlin {
}
}
}

dokka {
modulePath = "smithy-client"
}
Loading