From d51f38d983157a1e4c584b7c54ffdc7e5f75ad0b Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 24 Jun 2025 14:33:41 -0400 Subject: [PATCH 01/14] misc: test jreleaser branch --- build.gradle.kts | 34 ++++++++++++++++++++++++++++++++-- gradle.properties | 2 +- gradle/libs.versions.toml | 2 +- 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b83ed0f3abf..fbcd1508d24 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,8 +3,9 @@ * SPDX-License-Identifier: Apache-2.0 */ import aws.sdk.kotlin.gradle.dsl.configureLinting -import aws.sdk.kotlin.gradle.dsl.configureNexus +import aws.sdk.kotlin.gradle.dsl.configureJReleaser import aws.sdk.kotlin.gradle.util.typedProp +import org.jreleaser.model.Active buildscript { // NOTE: buildscript classpath for the root project is the parent classloader for the subprojects, we @@ -22,6 +23,7 @@ plugins { id(libs.plugins.kotlin.multiplatform.get().pluginId) apply false id(libs.plugins.kotlin.jvm.get().pluginId) apply false alias(libs.plugins.aws.kotlin.repo.tools.artifactsizemetrics) + id("org.jreleaser") version "1.17.0" } artifactSizeMetrics { @@ -77,8 +79,36 @@ dependencies { dokka(project(":hll")) } +allprojects { + configurations.all { + resolutionStrategy { + force("com.fasterxml.jackson.core:jackson-core:2.19.1") + } + } +} + // Publishing -configureNexus() +jreleaser { + project { + version = "0.0.1" + } + signing { + active = Active.ALWAYS + armored = true + } + deploy { + maven { + mavenCentral { + create("maven-central") { + active = Active.ALWAYS + url = "https://central.sonatype.com/api/v1/publisher" // TODO: Use `gr jreleaserDeploy` +// sign = true // TODO: Remove me if unnecessary + stagingRepository(rootProject.layout.buildDirectory.dir("m2").get().toString()) + } + } + } + } +} // Code Style val lintPaths = listOf( diff --git a/gradle.properties b/gradle.properties index addff50d405..b96f82492a4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ kotlin.native.ignoreDisabledTargets=true org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2G # sdk -sdkVersion=1.4.112-SNAPSHOT +sdkVersion=0.0.1 # dokka config (values specified at build-time as needed) smithyKotlinDocBaseUrl=https://sdk.amazonaws.com/kotlin/api/smithy-kotlin/api/$smithyKotlinRuntimeVersion/ diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6b4316a23ef..bea71363096 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.1.0-1.0.29" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.4.24" +aws-kotlin-repo-tools-version = "0.0.1" # libs coroutines-version = "1.9.0" From 640ca056b1b1dc9cb55bd7db3f3929c20c666124 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 24 Jun 2025 14:47:59 -0400 Subject: [PATCH 02/14] repo tools version --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bea71363096..492888c611b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.1.0-1.0.29" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.0.1" +aws-kotlin-repo-tools-version = "0.4.27" # libs coroutines-version = "1.9.0" From 375699b4da21d7bd9c36dd4f568733c3979c085d Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 24 Jun 2025 14:49:54 -0400 Subject: [PATCH 03/14] fix unavailable import --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index fbcd1508d24..9149704e578 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ import aws.sdk.kotlin.gradle.dsl.configureLinting -import aws.sdk.kotlin.gradle.dsl.configureJReleaser +//import aws.sdk.kotlin.gradle.dsl.configureJReleaser import aws.sdk.kotlin.gradle.util.typedProp import org.jreleaser.model.Active From 7480c89a5cd4e658c6634901bf0ba879c7a1ec64 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 24 Jun 2025 21:55:01 -0400 Subject: [PATCH 04/14] force dokka configuration to upgrade jackson versions --- build.gradle.kts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 9149704e578..50dce917b8b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -82,11 +82,22 @@ dependencies { allprojects { configurations.all { resolutionStrategy { - force("com.fasterxml.jackson.core:jackson-core:2.19.1") + force("com.fasterxml.jackson.core:jackson-core:2.15.3") + force("com.fasterxml.jackson.core:jackson-databind:2.15.3") + force("com.fasterxml.jackson.core:jackson-annotations:2.15.3") } } } +allprojects { + configurations.all { + resolutionStrategy.eachDependency { + if (requested.group.contains("com.fasterxml.jackson")) { + useVersion("2.15.3") + } + } + } +} // Publishing jreleaser { project { From 099b991c8764d29166177d0d5e63643e28dba42d Mon Sep 17 00:00:00 2001 From: 0marperez Date: Wed, 25 Jun 2025 11:31:19 -0400 Subject: [PATCH 05/14] increase max heap size --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index b96f82492a4..5463d5f8601 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ kotlin.mpp.stability.nowarn=true kotlin.native.ignoreDisabledTargets=true # gradle -org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2G +org.gradle.jvmargs=-Xmx10g -XX:MaxMetaspaceSize=2G # sdk sdkVersion=0.0.1 From 24068c70a8a40f0a1388406cf8510a53a6e8a3f0 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Wed, 25 Jun 2025 11:38:14 -0400 Subject: [PATCH 06/14] clean code up a bit --- build.gradle.kts | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 50dce917b8b..270a8a693d9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -79,16 +79,6 @@ dependencies { dokka(project(":hll")) } -allprojects { - configurations.all { - resolutionStrategy { - force("com.fasterxml.jackson.core:jackson-core:2.15.3") - force("com.fasterxml.jackson.core:jackson-databind:2.15.3") - force("com.fasterxml.jackson.core:jackson-annotations:2.15.3") - } - } -} - allprojects { configurations.all { resolutionStrategy.eachDependency { @@ -98,7 +88,8 @@ allprojects { } } } -// Publishing + +// TODO: Use `gr jreleaserDeploy` jreleaser { project { version = "0.0.1" @@ -112,8 +103,7 @@ jreleaser { mavenCentral { create("maven-central") { active = Active.ALWAYS - url = "https://central.sonatype.com/api/v1/publisher" // TODO: Use `gr jreleaserDeploy` -// sign = true // TODO: Remove me if unnecessary + url = "https://central.sonatype.com/api/v1/publisher" stagingRepository(rootProject.layout.buildDirectory.dir("m2").get().toString()) } } From ddf25f51b80588e9fc4cf1321acfa1875378b6aa Mon Sep 17 00:00:00 2001 From: 0marperez Date: Fri, 27 Jun 2025 11:23:45 -0400 Subject: [PATCH 07/14] debug code --- build.gradle.kts | 7 ++++++- gradle/libs.versions.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 270a8a693d9..dd0c500ef26 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,7 +23,7 @@ plugins { id(libs.plugins.kotlin.multiplatform.get().pluginId) apply false id(libs.plugins.kotlin.jvm.get().pluginId) apply false alias(libs.plugins.aws.kotlin.repo.tools.artifactsizemetrics) - id("org.jreleaser") version "1.17.0" + id("org.jreleaser") version "1.18.0" } artifactSizeMetrics { @@ -80,6 +80,10 @@ dependencies { } allprojects { +// throw Exception(configurations.toString()) +// configurations.forEach { +// println(it.name) +// } configurations.all { resolutionStrategy.eachDependency { if (requested.group.contains("com.fasterxml.jackson")) { @@ -89,6 +93,7 @@ allprojects { } } + // TODO: Use `gr jreleaserDeploy` jreleaser { project { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 492888c611b..bea71363096 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.1.0-1.0.29" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.4.27" +aws-kotlin-repo-tools-version = "0.0.1" # libs coroutines-version = "1.9.0" From 12b0e9939fdcb3e14d064be2107b55f3e593085e Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 1 Jul 2025 16:53:36 -0400 Subject: [PATCH 08/14] everything looks ok minus testing of new task via repo tools --- bom/build.gradle.kts | 10 + build.gradle.kts | 48 +- gradle/libs.versions.toml | 2 +- temp.txt | 31100 ++++++++++++++++++++++++++++++++++++ 4 files changed, 31120 insertions(+), 40 deletions(-) create mode 100644 temp.txt diff --git a/bom/build.gradle.kts b/bom/build.gradle.kts index 63dc048fc5a..00a7e0a7b02 100644 --- a/bom/build.gradle.kts +++ b/bom/build.gradle.kts @@ -114,6 +114,16 @@ publishing { artifactId = "version-catalog" description = "Provides a version catalog" from(components["versionCatalog"]) + + /* + Creates a dummy JAR for version catalog publishing + The `version-catalog` plugin doesn't generate one because it isn't needed but JReleaser requires a jar to be present in the version catalog component + https://docs.gradle.org/current/userguide/version_catalogs.html#sec:version-catalog-plugin + + Consuming published version catalogs with the dummy JAR still work + https://docs.gradle.org/current/userguide/version_catalogs.html#sec:importing-published-catalog + */ + artifact(tasks["versionCatalogJar"]) } } } diff --git a/build.gradle.kts b/build.gradle.kts index dd0c500ef26..f24bc36a2f3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,9 +3,8 @@ * SPDX-License-Identifier: Apache-2.0 */ import aws.sdk.kotlin.gradle.dsl.configureLinting -//import aws.sdk.kotlin.gradle.dsl.configureJReleaser +import aws.sdk.kotlin.gradle.dsl.configureJReleaser import aws.sdk.kotlin.gradle.util.typedProp -import org.jreleaser.model.Active buildscript { // NOTE: buildscript classpath for the root project is the parent classloader for the subprojects, we @@ -14,6 +13,12 @@ buildscript { classpath(libs.kotlinx.atomicfu.plugin) // Add our custom gradle build logic to buildscript classpath classpath(libs.aws.kotlin.repo.tools.build.support) + /* + Enforce jackson to a version supported both by dokka and jreleaser: + https://github.com/Kotlin/dokka/issues/3472#issuecomment-1929712374 + https://github.com/Kotlin/dokka/issues/3194#issuecomment-1929382630 + */ + classpath(enforcedPlatform("com.fasterxml.jackson:jackson-bom:2.15.3")) } } @@ -23,7 +28,6 @@ plugins { id(libs.plugins.kotlin.multiplatform.get().pluginId) apply false id(libs.plugins.kotlin.jvm.get().pluginId) apply false alias(libs.plugins.aws.kotlin.repo.tools.artifactsizemetrics) - id("org.jreleaser") version "1.18.0" } artifactSizeMetrics { @@ -79,42 +83,8 @@ dependencies { dokka(project(":hll")) } -allprojects { -// throw Exception(configurations.toString()) -// configurations.forEach { -// println(it.name) -// } - configurations.all { - resolutionStrategy.eachDependency { - if (requested.group.contains("com.fasterxml.jackson")) { - useVersion("2.15.3") - } - } - } -} - - -// TODO: Use `gr jreleaserDeploy` -jreleaser { - project { - version = "0.0.1" - } - signing { - active = Active.ALWAYS - armored = true - } - deploy { - maven { - mavenCentral { - create("maven-central") { - active = Active.ALWAYS - url = "https://central.sonatype.com/api/v1/publisher" - stagingRepository(rootProject.layout.buildDirectory.dir("m2").get().toString()) - } - } - } - } -} +// Publishing +configureJReleaser() // Code Style val lintPaths = listOf( diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bea71363096..b9e30af49e3 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.1.0-1.0.29" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.0.1" +aws-kotlin-repo-tools-version = "0.4.31-SNAPSHOT" # libs coroutines-version = "1.9.0" diff --git a/temp.txt b/temp.txt new file mode 100644 index 00000000000..9aa2c2b12b5 --- /dev/null +++ b/temp.txt @@ -0,0 +1,31100 @@ +:services:dynamodb is not bootstrapped, skipping :hll:dynamodb-mapper and subprojects +Skipping :tests:benchmarks:service-benchmarks because these service(s) are not bootstrapped: [sns, sts, cloudwatch, cloudwatchevents, dynamodb, secretsmanager, iam] +Including build '/Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/smithy-kotlin' +Including build '/Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/aws-crt-kotlin' + +> Configure project :build-support +WARNING: Unsupported Kotlin plugin version. +The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `2.0.21` that might work differently than in the requested version `2.1.0`. + +> Configure project :aws-crt-kotlin:elasticurl +w: 'java' Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin. + +Consider adding a new subproject with 'java' plugin where the KMP project is added as a dependency. + +w: 'application' (also applies 'java' plugin) Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin. + +Consider adding a new subproject with 'application' plugin where the KMP project is added as a dependency. + + +> Configure project :buildSrc +WARNING: Unsupported Kotlin plugin version. +The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `2.0.21` that might work differently than in the requested version `2.1.0`. + +> Task :buildSrc:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :buildSrc:generateExternalPluginSpecBuilders UP-TO-DATE +> Task :buildSrc:extractPrecompiledScriptPluginPlugins UP-TO-DATE +> Task :buildSrc:compilePluginsBlocks UP-TO-DATE +> Task :buildSrc:generatePrecompiledScriptPluginAccessors UP-TO-DATE +> Task :buildSrc:generateScriptPluginAdapters UP-TO-DATE +> Task :buildSrc:compileKotlin UP-TO-DATE +> Task :buildSrc:compileJava NO-SOURCE +> Task :buildSrc:compileGroovy NO-SOURCE +> Task :buildSrc:pluginDescriptors UP-TO-DATE +> Task :buildSrc:processResources UP-TO-DATE +> Task :buildSrc:classes UP-TO-DATE +> Task :buildSrc:jar UP-TO-DATE +> Task :smithy-kotlin:runtime:runtime-core:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:runtime-core:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:runtime-core:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:runtime-core:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:runtime-core:transformJvmMainAtomicfu UP-TO-DATE +> Task :smithy-kotlin:runtime:runtime-core:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:serde:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:smithy-client:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:identity-api:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:observability:telemetry-api:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:observability:telemetry-api:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:identity-api:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:identity-api:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:identity-api:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:identity-api:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:smithy-client:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:smithy-client:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:smithy-client:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:smithy-client:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:http-auth-api:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:http:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:http:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:http:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-api:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:http-auth:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:http-client:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:http-client:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:http-client:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client:transformJvmMainAtomicfu UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:transformJvmMainAtomicfu UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:serde-xml:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:serde-xml:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-xml:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:serde:serde-xml:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-xml:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:serde-json:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:serde-json:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-json:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:serde:serde-json:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-json:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:aws-credentials:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:aws-credentials:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-credentials:transformJvmMainAtomicfu UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-common:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:aws-signing-common:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-event-stream:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:aws-event-stream:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-default:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:aws-signing-default:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-aws:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:auth:http-auth-aws:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:observability:logging-slf4j2:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:observability:logging-slf4j2:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:transformJvmMainAtomicfu UP-TO-DATE +> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmJar UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-form-url:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :smithy-kotlin:runtime:serde:serde-form-url:compileKotlinJvm UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmProcessResources NO-SOURCE +> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmMainClasses UP-TO-DATE +> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmJar UP-TO-DATE + +> Configure project : +dokka +dokkaHtmlGeneratorRuntime +dokkaHtmlGeneratorRuntimeResolver~internal +dokkaHtmlModuleOutputDirectoriesConsumable~internal +dokkaHtmlModuleOutputDirectoriesResolver~internal +dokkaHtmlPlugin +dokkaHtmlPluginIntransitiveResolver~internal +dokkaHtmlPublicationPlugin +dokkaHtmlPublicationPluginApiOnlyConsumable~internal +dokkaHtmlPublicationPluginApiOnly~internal +dokkaHtmlPublicationPluginResolver~internal +dokkaPlugin + + + + + + + + + + + + + + + + + + + + + + + + + +> Task :build-support:checkKotlinGradlePluginConfigurationErrors SKIPPED +> Task :build-support:compileKotlin UP-TO-DATE +> Task :build-support:compileJava NO-SOURCE +> Task :build-support:pluginDescriptors UP-TO-DATE +> Task :build-support:processResources UP-TO-DATE +> Task :build-support:classes UP-TO-DATE +> Task :build-support:jar UP-TO-DATE + +> Configure project :services:s3 +w: Kotlin Source Set 'jvmE2eTest' can't depend on 'jvmMain' which is a default source set for compilation. +None of source sets can depend on the compilation default source sets. +Please remove this dependency edge. + + +> Task :allDeps + +------------------------------------------------------------ +Root project 'aws-sdk-kotlin' +------------------------------------------------------------ + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) ++--- project aws-runtime (n) ++--- project services (n) +\--- project hll (n) + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. ++--- project :aws-runtime +| +--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| +--- project :aws-runtime:aws-endpoint +| \--- project :aws-runtime:aws-http ++--- project :services +| \--- project :services:s3 +\--- project :hll + \--- project :hll:hll-mapping-core + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). ++--- project :aws-runtime +| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.dokka:templating-plugin:2.0.0 +| | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) ++--- project :services +| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) +\--- project :hll + \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +ktlint +\--- com.pinterest.ktlint:ktlint-cli:1.3.0 + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :aws-runtime:allDeps + +------------------------------------------------------------ +Project ':aws-runtime' - AWS client runtime support for generated service clients +------------------------------------------------------------ + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) +\--- org.ow2.asm:asm-tree:9.6 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 +\--- org.ow2.asm:asm-tree:9.6 + \--- org.ow2.asm:asm:9.6 + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) ++--- project aws-config (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) +\--- project aws-http (n) + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. ++--- project :aws-runtime:aws-config ++--- project :aws-runtime:aws-core ++--- project :aws-runtime:aws-endpoint +\--- project :aws-runtime:aws-http + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). ++--- project :aws-runtime:aws-config +| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.dokka:templating-plugin:2.0.0 +| | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) +| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) ++--- project :aws-runtime:aws-core +| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) ++--- project :aws-runtime:aws-endpoint +| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) +\--- project :aws-runtime:aws-http + \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jacocoAgent - The Jacoco agent to use to get coverage data. +\--- org.jacoco:org.jacoco.agent:0.8.12 + +jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. +\--- org.jacoco:org.jacoco.ant:0.8.12 + +--- org.jacoco:org.jacoco.core:0.8.12 + | +--- org.ow2.asm:asm:9.7 + | +--- org.ow2.asm:asm-commons:9.7 + | | +--- org.ow2.asm:asm:9.7 + | | \--- org.ow2.asm:asm-tree:9.7 + | | \--- org.ow2.asm:asm:9.7 + | \--- org.ow2.asm:asm-tree:9.7 (*) + +--- org.jacoco:org.jacoco.report:0.8.12 + | \--- org.jacoco:org.jacoco.core:0.8.12 (*) + \--- org.jacoco:org.jacoco.agent:0.8.12 + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :bom:allDeps + +------------------------------------------------------------ +Project ':bom' - Provides a version catalog +------------------------------------------------------------ + +api (n) +No dependencies + +apiElements (n) +No dependencies + +classpath +No dependencies + +enforcedApiElements (n) +No dependencies + +enforcedRuntimeElements (n) +No dependencies + +runtime (n) +No dependencies + +runtimeElements (n) +No dependencies + +signatures (n) +No dependencies + +versionCatalog (n) +No dependencies + +versionCatalogElements - Artifacts for the version catalog (n) +No dependencies + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :codegen:allDeps + +------------------------------------------------------------ +Project ':codegen' +------------------------------------------------------------ + +No configurations + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :dokka-aws:allDeps + +------------------------------------------------------------ +Project ':dokka-aws' - Custom Dokka plugin for AWS Kotlin SDK API docs +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +apiDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +compileClasspath - Compile classpath for 'main'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +\--- org.jetbrains.dokka:dokka-core:2.0.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +compileOnlyDependenciesMetadata ++--- org.jetbrains.dokka:dokka-base:2.0.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 +\--- org.jetbrains.dokka:dokka-core:2.0.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 + +default - Configuration for default artifacts. (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) ++--- project :dokka-aws (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws (*) + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +implementation - Implementation only dependencies for 'main'. (n) +No dependencies + +implementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jsoup:jsoup:1.20.1 ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.jsoup:jsoup:1.20.1 (n) ++--- org.junit.jupiter:junit-jupiter:5.10.5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) + +testImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jsoup:jsoup:1.20.1 ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 ++--- org.jsoup:jsoup:1.20.1 ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 (*) +| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 +| +--- org.junit.platform:junit-platform-engine:1.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) + \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 + +--- org.junit.platform:junit-platform-engine:1.10.5 (*) + \--- org.apiguardian:apiguardian-api:1.1.2 + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :hll:allDeps + +------------------------------------------------------------ +Project ':hll' - High-level libraries for the AWS SDK for Kotlin +------------------------------------------------------------ + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) +\--- org.ow2.asm:asm-tree:9.6 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 +\--- org.ow2.asm:asm-tree:9.6 + \--- org.ow2.asm:asm:9.6 + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +\--- project hll-mapping-core (n) + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +\--- project :hll:hll-mapping-core + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +\--- project :hll:hll-mapping-core + \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 + +--- org.jetbrains.dokka:dokka-base:2.0.0 + | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 + | | +--- org.jsoup:jsoup:1.16.1 + | | +--- org.jetbrains:markdown:0.7.3 + | | | \--- org.jetbrains:markdown-jvm:0.7.3 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 + | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) + | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) + | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 + | | +--- org.jetbrains:annotations:23.0.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 + | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | +--- org.jsoup:jsoup:1.16.1 + | +--- org.freemarker:freemarker:2.3.32 + | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) + | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 + | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 + | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 + | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 + | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) + | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) + | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) + | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) + +--- org.jetbrains.dokka:templating-plugin:2.0.0 + | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) + | +--- org.jsoup:jsoup:1.16.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) + +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) + +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jacocoAgent - The Jacoco agent to use to get coverage data. +\--- org.jacoco:org.jacoco.agent:0.8.12 + +jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. +\--- org.jacoco:org.jacoco.ant:0.8.12 + +--- org.jacoco:org.jacoco.core:0.8.12 + | +--- org.ow2.asm:asm:9.7 + | +--- org.ow2.asm:asm-commons:9.7 + | | +--- org.ow2.asm:asm:9.7 + | | \--- org.ow2.asm:asm-tree:9.7 + | | \--- org.ow2.asm:asm:9.7 + | \--- org.ow2.asm:asm-tree:9.7 (*) + +--- org.jacoco:org.jacoco.report:0.8.12 + | \--- org.jacoco:org.jacoco.core:0.8.12 (*) + \--- org.jacoco:org.jacoco.agent:0.8.12 + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :services:allDeps + +------------------------------------------------------------ +Project ':services' +------------------------------------------------------------ + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +\--- project s3 (n) + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +\--- project :services:s3 + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +\--- project :services:s3 + \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 + +--- org.jetbrains.dokka:dokka-base:2.0.0 + | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 + | | +--- org.jsoup:jsoup:1.16.1 + | | +--- org.jetbrains:markdown:0.7.3 + | | | \--- org.jetbrains:markdown-jvm:0.7.3 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 + | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) + | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) + | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 + | | +--- org.jetbrains:annotations:23.0.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 + | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | +--- org.jsoup:jsoup:1.16.1 + | +--- org.freemarker:freemarker:2.3.32 + | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) + | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 + | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 + | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 + | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 + | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) + | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) + | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) + | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) + +--- org.jetbrains.dokka:templating-plugin:2.0.0 + | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) + | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) + | +--- org.jsoup:jsoup:1.16.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) + +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) + +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:allDeps + +------------------------------------------------------------ +Project ':tests' +------------------------------------------------------------ + +No configurations + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :aws-runtime:aws-config:allDeps + +------------------------------------------------------------ +Project ':aws-runtime:aws-config' - Support for AWS configuration +------------------------------------------------------------ + +allSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) + +bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) + +commonMainApi (n) ++--- project aws-core (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +commonMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonMainCompileOnly (n) +\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) + +commonMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonMainImplementation (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:serde-json:1.4.20 (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:serde-xml:1.4.20 (n) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 (n) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) + +commonMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +No dependencies + +commonTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) ++--- io.kotest:kotest-assertions-core:5.9.1 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:http-test:1.4.20 (n) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (n) ++--- io.kotest:kotest-framework-datatest:5.9.1 (n) +\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) + +commonTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 +| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) +\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.slf4j:slf4j-api:2.0.16 +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :aws-runtime:aws-core (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- project :smithy-kotlin:runtime:serde:serde-xml (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- project :smithy-kotlin:runtime:serde:serde-json (*) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) ++--- project aws-core (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) ++--- unspecified (n) +\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- project aws-core (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:serde-json:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:serde-xml:1.4.20 (n) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 (n) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| \--- io.kotest:kotest-framework-datatest-jvm:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 +| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| \--- io.mockk:mockk-jvm:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- io.mockk:mockk-dsl-jvm:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | \--- io.mockk:mockk-agent-jvm:1.13.13 +| | +--- org.objenesis:objenesis:3.3 +| | +--- net.bytebuddy:byte-buddy:1.14.17 +| | +--- net.bytebuddy:byte-buddy-agent:1.14.17 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- io.mockk:mockk-agent-api-jvm:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- io.mockk:mockk-core-jvm:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- io.kotest:kotest-runner-junit5-jvm:5.9.1 +| +--- io.kotest:kotest-framework-api:5.9.1 +| | \--- io.kotest:kotest-framework-api-jvm:5.9.1 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-framework-engine:5.9.1 +| | \--- io.kotest:kotest-framework-engine-jvm:5.9.1 +| | +--- io.github.classgraph:classgraph:4.8.172 +| | +--- io.kotest:kotest-framework-discovery:5.9.1 +| | | \--- io.kotest:kotest-framework-discovery-jvm:5.9.1 +| | | +--- io.kotest:kotest-common:5.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- com.github.ajalt:mordant:1.2.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.21 -> 2.1.10 (*) +| | | \--- com.github.ajalt:colormath:1.2.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.51 -> 2.1.10 (*) +| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| | +--- io.kotest:kotest-common:5.9.1 (*) +| | +--- io.kotest:kotest-framework-api:5.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- io.kotest:kotest-framework-discovery:5.9.1 (*) +| +--- io.kotest:kotest-assertions-core:5.9.1 (*) +| +--- io.kotest:kotest-extensions:5.9.1 +| | \--- io.kotest:kotest-extensions-jvm:5.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- io.kotest:kotest-framework-concurrency:5.9.1 +| | \--- io.kotest:kotest-framework-concurrency-jvm:5.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- org.junit.platform:junit-platform-engine:1.8.2 +| | +--- org.junit:junit-bom:5.8.2 +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (c) +| | | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (c) +| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) +| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) +| | +--- org.opentest4j:opentest4j:1.2.0 -> 1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.platform:junit-platform-suite-api:1.8.2 +| | +--- org.junit:junit-bom:5.8.2 (*) +| | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.platform:junit-platform-launcher:1.8.2 +| | +--- org.junit:junit-bom:5.8.2 (*) +| | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) ++--- org.slf4j:slf4j-simple:2.0.16 (n) ++--- io.mockk:mockk:1.13.13 (n) +\--- io.kotest:kotest-runner-junit5:5.9.1 (n) + +jvmTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) ++--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) ++--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.slf4j:slf4j-api:2.0.16 +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :aws-runtime:aws-core (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- project :smithy-kotlin:runtime:serde:serde-xml (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- project :smithy-kotlin:runtime:serde:serde-json (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- io.ktor:ktor-server-cio:3.1.1 +| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-server-core:3.1.1 +| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- com.typesafe:config:1.4.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 +| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http:3.1.1 +| | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-events:3.1.1 +| | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.fusesource.jansi:jansi:2.4.1 +| | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- io.ktor:ktor-network:3.1.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- io.kotest:kotest-framework-datatest:5.9.1 +| \--- io.kotest:kotest-framework-datatest-jvm:5.9.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| \--- io.kotest:kotest-framework-api:5.9.1 +| \--- io.kotest:kotest-framework-api-jvm:5.9.1 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 +| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- io.mockk:mockk:1.13.13 +| \--- io.mockk:mockk-jvm:1.13.13 +| +--- io.mockk:mockk-dsl:1.13.13 +| | \--- io.mockk:mockk-dsl-jvm:1.13.13 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) +| | \--- io.mockk:mockk-core:1.13.13 +| | \--- io.mockk:mockk-core-jvm:1.13.13 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) +| +--- io.mockk:mockk-agent:1.13.13 +| | \--- io.mockk:mockk-agent-jvm:1.13.13 +| | +--- org.objenesis:objenesis:3.3 +| | +--- net.bytebuddy:byte-buddy:1.14.17 +| | +--- net.bytebuddy:byte-buddy-agent:1.14.17 +| | +--- io.mockk:mockk-agent-api:1.13.13 +| | | \--- io.mockk:mockk-agent-api-jvm:1.13.13 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) +| | \--- io.mockk:mockk-core:1.13.13 (*) +| +--- io.mockk:mockk-agent-api:1.13.13 (*) +| +--- io.mockk:mockk-core:1.13.13 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| +--- junit:junit:4.13.2 +| | \--- org.hamcrest:hamcrest-core:1.3 +| +--- org.junit.jupiter:junit-jupiter:5.8.2 +| | +--- org.junit:junit-bom:5.8.2 +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (c) +| | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -> 5.10.1 (c) +| | | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (c) +| | | +--- org.junit.platform:junit-platform-engine:1.8.2 -> 1.10.1 (c) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 -> 1.10.1 (c) +| | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) +| | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) +| | | \--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) +| | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) +| | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -> 5.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) ++--- io.kotest:kotest-runner-junit5:5.9.1 +| \--- io.kotest:kotest-runner-junit5-jvm:5.9.1 +| +--- io.kotest:kotest-framework-api:5.9.1 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-framework-engine:5.9.1 +| | \--- io.kotest:kotest-framework-engine-jvm:5.9.1 +| | +--- io.github.classgraph:classgraph:4.8.172 +| | +--- io.kotest:kotest-framework-discovery:5.9.1 +| | | \--- io.kotest:kotest-framework-discovery-jvm:5.9.1 +| | | +--- io.kotest:kotest-common:5.9.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | | \--- io.github.classgraph:classgraph:4.8.172 +| | +--- com.github.ajalt:mordant:1.2.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.21 -> 2.1.10 (*) +| | | \--- com.github.ajalt:colormath:1.2.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.51 -> 2.1.10 (*) +| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| | +--- io.kotest:kotest-common:5.9.1 (*) +| | +--- io.kotest:kotest-framework-api:5.9.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.8.0 -> 1.10.1 +| | | +--- net.bytebuddy:byte-buddy:1.10.9 -> 1.14.17 +| | | +--- net.bytebuddy:byte-buddy-agent:1.10.9 -> 1.14.17 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| | | +--- net.java.dev.jna:jna:5.9.0 +| | | +--- net.java.dev.jna:jna-platform:5.9.0 +| | | | \--- net.java.dev.jna:jna:5.9.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- io.kotest:kotest-framework-discovery:5.9.1 (*) +| +--- io.kotest:kotest-assertions-core:5.9.1 (*) +| +--- io.kotest:kotest-extensions:5.9.1 +| | \--- io.kotest:kotest-extensions-jvm:5.9.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | +--- io.kotest:kotest-framework-api:5.9.1 (*) +| | +--- io.kotest:kotest-framework-engine:5.9.1 (*) +| | \--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-framework-concurrency:5.9.1 +| | \--- io.kotest:kotest-framework-concurrency-jvm:5.9.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- io.kotest:kotest-common:5.9.1 (*) +| | \--- io.kotest:kotest-framework-api:5.9.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- org.junit.platform:junit-platform-engine:1.8.2 -> 1.10.1 (*) +| +--- org.junit.platform:junit-platform-suite-api:1.8.2 +| | +--- org.junit:junit-bom:5.8.2 (*) +| | \--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) +| +--- org.junit.platform:junit-platform-launcher:1.8.2 -> 1.10.1 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation ++--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 +\--- org.jetbrains.kotlin:kotlin-atomicfu-compiler-plugin-embeddable:2.1.0 + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation ++--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 +\--- org.jetbrains.kotlin:kotlin-atomicfu-compiler-plugin-embeddable:2.1.0 + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation ++--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +runtimeClasspath +No dependencies + +signatures (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :aws-runtime:aws-core:allDeps + +------------------------------------------------------------ +Project ':aws-runtime:aws-core' - AWS client runtime core +------------------------------------------------------------ + +allSourceSetsCompileDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) + +bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +commonMainApi (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +commonMainApiDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainCompileOnly (n) +No dependencies + +commonMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainImplementation (n) +No dependencies + +commonMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +No dependencies + +commonTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) ++--- io.kotest:kotest-assertions-core:5.9.1 (n) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) + +commonTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.slf4j:slf4j-simple:2.0.16 (n) + +jvmTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:identity-api +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +signatures (n) +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :aws-runtime:aws-endpoint:allDeps + +------------------------------------------------------------ +Project ':aws-runtime:aws-endpoint' - AWS Endpoint Support +------------------------------------------------------------ + +allSourceSetsCompileDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- project :aws-runtime:aws-core + +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) + +bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +commonMainApi (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +commonMainApiDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainCompileOnly (n) +No dependencies + +commonMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainImplementation (n) +\--- project aws-core (n) + +commonMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +No dependencies + +commonTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) +\--- io.kotest:kotest-assertions-core:5.9.1 (n) + +commonTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- project :aws-runtime:aws-core + +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- project :aws-runtime:aws-core + +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) +\--- project aws-core (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.slf4j:slf4j-simple:2.0.16 (n) + +jvmTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) ++--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| +--- project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:protocol:http +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- project :aws-runtime:aws-core + +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +signatures (n) +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :aws-runtime:aws-http:allDeps + +------------------------------------------------------------ +Project ':aws-runtime:aws-http' - HTTP core for AWS service clients +------------------------------------------------------------ + +allSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) + +bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +commonMainApi (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +commonMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainCompileOnly (n) +No dependencies + +commonMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainImplementation (n) +No dependencies + +commonMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +\--- aws.smithy.kotlin:http-test:1.4.20 (n) + +commonTestApiDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) ++--- io.kotest:kotest-assertions-core:5.9.1 (n) +\--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) + +commonTestImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :aws-runtime:aws-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.slf4j:slf4j-simple:2.0.16 (n) + +jvmTestImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.10.1 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :aws-runtime:aws-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | | +--- org.opentest4j:opentest4j:1.3.0 +| | | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | | +--- org.opentest4j:opentest4j:1.3.0 +| | | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.junit.platform:junit-platform-launcher:1.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- io.ktor:ktor-server-cio:3.1.1 +| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-server-core:3.1.1 +| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- com.typesafe:config:1.4.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 +| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http:3.1.1 +| | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-events:3.1.1 +| | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.fusesource.jansi:jansi:2.4.1 +| | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- io.ktor:ktor-network:3.1.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +signatures (n) +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :codegen:aws-sdk-codegen:allDeps + +------------------------------------------------------------ +Project ':codegen:aws-sdk-codegen' - Codegen support for AWS SDK for Kotlin +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 (n) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 (n) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 (n) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 (n) +\--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 (n) + +apiDependenciesMetadata ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +\--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +compileClasspath - Compile classpath for 'main'. ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 +| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 +| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 + | +--- org.jetbrains:annotations:23.0.0 + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +coverageDataElementsForTest - Binary data file containing results of Jacoco test coverage reporting for the test Test Suite's test target. (n) +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 (n) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 (n) ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 (n) +\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) + +implementationDependenciesMetadata ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 +| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 +| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 + | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +jacocoAgent - The Jacoco agent to use to get coverage data. +\--- org.jacoco:org.jacoco.agent:0.8.12 + +jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. +\--- org.jacoco:org.jacoco.ant:0.8.12 + +--- org.jacoco:org.jacoco.core:0.8.12 + | +--- org.ow2.asm:asm:9.7 + | +--- org.ow2.asm:asm-commons:9.7 + | | +--- org.ow2.asm:asm:9.7 + | | \--- org.ow2.asm:asm-tree:9.7 + | | \--- org.ow2.asm:asm:9.7 + | \--- org.ow2.asm:asm-tree:9.7 (*) + +--- org.jacoco:org.jacoco.report:0.8.12 + | \--- org.jacoco:org.jacoco.core:0.8.12 (*) + \--- org.jacoco:org.jacoco.agent:0.8.12 + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jsoup:jsoup:1.19.1 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.54.0 ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 + | +--- org.jetbrains:annotations:23.0.0 + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- com.squareup.okio:okio:3.9.1 + \--- com.squareup.okio:okio-jvm:3.9.1 + \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 +| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 +| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-api:2.0.16 ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 + \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 + +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 + | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 (c) + | +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 (c) + | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (c) + | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 (c) + +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 + \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 + +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.junit.jupiter:junit-jupiter:5.10.5 (n) ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 (n) ++--- org.slf4j:slf4j-api:2.0.16 (n) ++--- org.slf4j:slf4j-simple:2.0.16 (n) +\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (n) + +testImplementationDependenciesMetadata ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 +| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 +| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-api:2.0.16 ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-build:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- org.jsoup:jsoup:1.19.1 ++--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.54.0 ++--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 (*) +| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 +| +--- org.junit.platform:junit-platform-engine:1.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) +| \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 +| +--- org.junit.platform:junit-platform-engine:1.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils +| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| +--- org.junit.jupiter:junit-jupiter:5.10.5 (*) +| +--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) ++--- org.slf4j:slf4j-api:2.0.16 ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 + \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 + +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 + | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 (c) + | +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 (c) + | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (c) + | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 (c) + +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 + \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 + +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :codegen:protocol-tests:allDeps + +------------------------------------------------------------ +Project ':codegen:protocol-tests' - Smithy protocol test suite +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) +No dependencies + +apiDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +\--- software.amazon.smithy:smithy-aws-protocol-tests:1.53.0 + +--- software.amazon.smithy:smithy-cli:1.53.0 (*) + +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) + +--- software.amazon.smithy:smithy-protocol-traits:1.53.0 -> 1.54.0 (*) + +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) + \--- software.amazon.smithy:smithy-validation-model:1.53.0 + \--- software.amazon.smithy:smithy-cli:1.53.0 (*) + +compileClasspath - Compile classpath for 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) +No dependencies + +implementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) +No dependencies + +testImplementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :codegen:sdk:allDeps + +------------------------------------------------------------ +Project ':codegen:sdk' - AWS SDK codegen tasks +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) +No dependencies + +apiDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 ++--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +\--- software.amazon.smithy:smithy-aws-smoke-test-model:1.53.0 + \--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) + +compileClasspath - Compile classpath for 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) +No dependencies + +implementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) +No dependencies + +testImplementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :hll:hll-codegen:allDeps + +------------------------------------------------------------ +Project ':hll:hll-codegen' - Common code-generation utilities used by AWS SDK for Kotlin's high level libraries +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) +\--- project aws-core (n) + +apiDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +compileClasspath - Compile classpath for 'main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 (n) +\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) + +implementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +signatures (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.junit.jupiter:junit-jupiter:5.10.5 (n) ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) + +testImplementationDependenciesMetadata ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| +--- org.junit:junit-bom:5.10.5 (*) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- project :aws-runtime:aws-core +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | +--- org.jetbrains:annotations:23.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- com.squareup.okio:okio:3.9.1 +| | \--- com.squareup.okio:okio-jvm:3.9.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- org.junit.jupiter:junit-jupiter:5.10.5 +| +--- org.junit:junit-bom:5.10.5 +| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 (*) +| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 +| +--- org.junit.platform:junit-platform-engine:1.10.5 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 + +--- org.jetbrains.kotlin:kotlin-test:2.1.0 + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) + \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 + +--- org.junit.platform:junit-platform-engine:1.10.5 (*) + \--- org.apiguardian:apiguardian-api:1.1.2 + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :hll:hll-mapping-core:allDeps + +------------------------------------------------------------ +Project ':hll:hll-mapping-core' - Common data mapping utilities used by AWS SDK for Kotlin's high level libraries +------------------------------------------------------------ + +allSourceSetsCompileDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 + | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) ++--- org.ow2.asm:asm:9.6 (n) ++--- org.ow2.asm:asm-tree:9.6 (n) +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) + +bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. ++--- org.ow2.asm:asm:9.6 ++--- org.ow2.asm:asm-tree:9.6 +| \--- org.ow2.asm:asm:9.6 +\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) + +bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +commonMainApi (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +commonMainApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainCompileOnly (n) +No dependencies + +commonMainCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainImplementation (n) +\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) + +commonMainImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +No dependencies + +commonTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) +\--- io.kotest:kotest-assertions-core:5.9.1 (n) + +commonTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 + | +--- org.jetbrains:annotations:23.0.0 + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 + | +--- org.jetbrains:annotations:23.0.0 + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 + | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) + | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- com.squareup.okio:okio:3.9.1 + \--- com.squareup.okio:okio-jvm:3.9.1 + \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) +\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5 (n) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) +\--- org.slf4j:slf4j-simple:2.0.16 (n) + +jvmTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- io.kotest:kotest-assertions-core:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) ++--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) ++--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) ++--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 -> 23.0.0 ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- io.kotest:kotest-assertions-core:5.9.1 +| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 +| +--- io.kotest:kotest-assertions-shared:5.9.1 +| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 +| | +--- io.kotest:kotest-assertions-api:5.9.1 +| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | +--- io.github.java-diff-utils:java-diff-utils:4.12 +| | +--- org.opentest4j:opentest4j:1.3.0 +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | +--- io.kotest:kotest-common:5.9.1 +| | | \--- io.kotest:kotest-common-jvm:5.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) +| +--- io.kotest:kotest-common:5.9.1 (*) +| +--- io.kotest:kotest-assertions-api:5.9.1 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) ++--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 +\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core + +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) + | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 + | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 + | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +signatures (n) +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :services:s3:allDeps + +------------------------------------------------------------ +Project ':services:s3' - The AWS SDK for Kotlin client for S3 +------------------------------------------------------------ + +allE2eTestSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.slf4j:slf4j-simple:2.0.16 + \--- org.slf4j:slf4j-api:2.0.16 + +allSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults + +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +allTestSourceSetsCompileDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +commonMainApi (n) ++--- project aws-config (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) +\--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) + +commonMainApiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainCompileOnly (n) +No dependencies + +commonMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainImplementation (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT (n) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT (n) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT (n) + +commonMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainIntransitiveDependenciesMetadata +No dependencies + +commonMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonMainRuntimeOnly (n) +No dependencies + +commonTestApi (n) +No dependencies + +commonTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestCompileOnly (n) +No dependencies + +commonTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test (n) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:http-test:1.4.20 (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) +\--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT (n) + +commonTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestIntransitiveDependenciesMetadata +No dependencies + +commonTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +commonTestRuntimeOnly (n) +No dependencies + +dokka - Fetch all Dokka files from all configurations in other subprojects. (n) +No dependencies + +dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) + +dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. ++--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 ++--- org.jetbrains.dokka:dokka-core:2.0.0 +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 +| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) +| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) +| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 +| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) +| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) +| | +--- org.codehaus.woodstox:stax2-api:4.2.2 +| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 +| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 +| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 +| +--- org.jetbrains.dokka:dokka-base:2.0.0 +| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 +| | | +--- org.jsoup:jsoup:1.16.1 +| | | +--- org.jetbrains:markdown:0.7.3 +| | | | \--- org.jetbrains:markdown-jvm:0.7.3 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| | +--- org.jsoup:jsoup:1.16.1 +| | +--- org.freemarker:freemarker:2.3.32 +| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 +| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) +| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) +| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) +| +--- org.jsoup:jsoup:1.16.1 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) ++--- org.jetbrains.dokka:dokka-base:2.0.0 (*) +\--- project :dokka-aws + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) +No dependencies + +dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. +No dependencies + +dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) ++--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) +\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) + +dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. ++--- org.jetbrains.dokka:templating-plugin:2.0.0 ++--- org.jetbrains.dokka:dokka-base:2.0.0 +\--- project :dokka-aws + +dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +No dependencies + +dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) +\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) + +dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). +No dependencies + +dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) +\--- project dokka-aws (n) + +e2eTestKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +e2eTestKotlinScriptDefExtensions +No dependencies + +jvmAndNativeMainApi (n) +No dependencies + +jvmAndNativeMainApiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainCompileOnly (n) +No dependencies + +jvmAndNativeMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainImplementation (n) +No dependencies + +jvmAndNativeMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeMainRuntimeOnly (n) +No dependencies + +jvmAndNativeTestApi (n) +No dependencies + +jvmAndNativeTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestCompileOnly (n) +No dependencies + +jvmAndNativeTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestImplementation (n) +No dependencies + +jvmAndNativeTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestIntransitiveDependenciesMetadata +No dependencies + +jvmAndNativeTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmAndNativeTestRuntimeOnly (n) +No dependencies + +jvmApiElements - API elements for main. (n) +No dependencies + +jvmApiElements-published (n) +No dependencies + +jvmCompilationApi - API dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) +No dependencies + +jvmCompileClasspath - Compile classpath for 'jvm/main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults + +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +jvmE2eTestApi (n) +\--- aws.smithy.kotlin:testing:1.4.20 (n) + +jvmE2eTestApiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmE2eTestCompilationApi - API dependencies for 'jvm/e2eTest'. (n) +No dependencies + +jvmE2eTestCompilationCompileOnly - Compile only dependencies for 'jvm/e2eTest'. (n) +No dependencies + +jvmE2eTestCompilationImplementation - Implementation only dependencies for 'jvm/e2eTest'. (n) +No dependencies + +jvmE2eTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/e2eTest'. (n) +No dependencies + +jvmE2eTestCompileClasspath - Compile classpath for 'jvm/e2eTest'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 +| | | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.slf4j:slf4j-simple:2.0.16 + \--- org.slf4j:slf4j-api:2.0.16 + +jvmE2eTestCompileOnly (n) +No dependencies + +jvmE2eTestCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmE2eTestImplementation (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) ++--- project e2e-test-util (n) +\--- org.slf4j:slf4j-simple:2.0.16 (n) + +jvmE2eTestImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmE2eTestIntransitiveDependenciesMetadata +No dependencies + +jvmE2eTestResolvableDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.slf4j:slf4j-simple:2.0.16 +| \--- org.slf4j:slf4j-api:2.0.16 ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) ++--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmE2eTestRuntimeClasspath - Runtime classpath of 'jvm/e2eTest'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter:5.10.5 +| | +--- org.junit:junit-bom:5.10.5 +| | | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) +| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) +| | | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) +| | | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) +| | | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) +| | | +--- org.junit.platform:junit-platform-engine:1.10.5 (c) +| | | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.5 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 +| | | +--- org.junit:junit-bom:5.10.5 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| | \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 +| | +--- org.junit.platform:junit-platform-engine:1.10.5 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) +| \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 +| +--- org.junit.platform:junit-platform-engine:1.10.5 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- project :tests:e2e-test-util +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) +| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:crt-util +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 +| | | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 +| | | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:protocol:http (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.slf4j:slf4j-simple:2.0.16 + \--- org.slf4j:slf4j-api:2.0.16 + +jvmE2eTestRuntimeOnly (n) +No dependencies + +jvmMainApi (n) +No dependencies + +jvmMainApiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainCompileOnly (n) +No dependencies + +jvmMainCompileOnlyDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainImplementation (n) +No dependencies + +jvmMainImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) +\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) + +jvmMainIntransitiveDependenciesMetadata +No dependencies + +jvmMainResolvableDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) +\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) + +jvmMainRuntimeOnly (n) +No dependencies + +jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) + +jvmRuntimeElements - Elements of runtime for main. (n) +No dependencies + +jvmRuntimeElements-published (n) +No dependencies + +jvmSourcesElements - Source files of main compilation of jvm. (n) +No dependencies + +jvmSourcesElements-published (n) +No dependencies + +jvmTestApi (n) +No dependencies + +jvmTestApiDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) ++--- project aws-config (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) +\--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) + +jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) ++--- unspecified (n) ++--- project aws-config (n) ++--- project aws-core (n) ++--- project aws-endpoint (n) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT (n) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT (n) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT (n) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT (n) + +jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) +\--- unspecified (n) + +jvmTestCompileClasspath - Compile classpath for 'jvm/test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestCompileOnly (n) +No dependencies + +jvmTestCompileOnlyDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestImplementation (n) +\--- org.jetbrains.kotlin:kotlin-test-junit5 (n) + +jvmTestImplementationDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| \--- org.jetbrains:annotations:13.0 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestIntransitiveDependenciesMetadata +No dependencies + +jvmTestResolvableDependenciesMetadata ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | \--- org.jetbrains:annotations:13.0 +| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) ++--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) ++--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) ++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) ++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) ++--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) ++--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) +\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) + +jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- io.ktor:ktor-server-cio:3.1.1 +| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-server-core:3.1.1 +| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- com.typesafe:config:1.4.3 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 +| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http:3.1.1 +| | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-events:3.1.1 +| | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.fusesource.jansi:jansi:2.4.1 +| | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- io.ktor:ktor-network:3.1.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:http-test (*) +| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- project :smithy-kotlin:runtime:serde:serde-cbor +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) ++--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) + +jvmTestRuntimeOnly (n) +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathJvmE2eTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +metadataApiElements - API elements for main. (n) +No dependencies + +metadataCompilationApi - API dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) +No dependencies + +metadataCompileClasspath - Compile classpath for 'metadata/main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults + +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +metadataSourcesElements - Source files of main compilation of metadata. (n) +No dependencies + +signatures (n) +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:codegen:allDeps + +------------------------------------------------------------ +Project ':tests:codegen' +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) +No dependencies + +apiDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen +No dependencies + +compileClasspath - Compile classpath for 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) +No dependencies + +implementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) +No dependencies + +testImplementationDependenciesMetadata +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + \--- org.jetbrains:annotations:13.0 + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:e2e-test-util:allDeps + +------------------------------------------------------------ +Project ':tests:e2e-test-util' - Test utilities for integration and e2e tests +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 (n) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) + +apiDependenciesMetadata ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +compileClasspath - Compile classpath for 'main'. ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) +No dependencies + +implementationDependenciesMetadata ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.slf4j:slf4j-api:2.0.16 +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:crt-util +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 +| | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 +| | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:protocol:http (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) +No dependencies + +testImplementationDependenciesMetadata ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.slf4j:slf4j-api:2.0.16 +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) ++--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:crt-util +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 +| | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 +| | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:protocol:http (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:codegen:checksums:allDeps + +------------------------------------------------------------ +Project ':tests:codegen:checksums' - AWS SDK for Kotlin's checksums codegen test suite +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- project aws-config (n) ++--- project aws-core (n) +\--- project aws-endpoint (n) + +apiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) + +compileClasspath - Compile classpath for 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- project aws-sdk-codegen (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- aws.smithy.kotlin:serde-json:1.4.20 (n) + +implementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:smithy-test:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) +\--- aws.smithy.kotlin:http-test:1.4.20 (n) + +testImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:http-test +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.ktor:ktor-server-cio:3.1.1 +| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-server-core:3.1.1 +| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- com.typesafe:config:1.4.3 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 +| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 +| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-events:3.1.1 +| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.fusesource.jansi:jansi:2.4.1 +| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- io.ktor:ktor-network:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- project :smithy-kotlin:runtime:serde:serde-cbor +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:codegen:event-stream:allDeps + +------------------------------------------------------------ +Project ':tests:codegen:event-stream' - AWS SDK for Kotlin's event stream codegen test suite +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- project aws-config (n) ++--- project aws-core (n) +\--- project aws-endpoint (n) + +apiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) + +compileClasspath - Compile classpath for 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- project aws-sdk-codegen (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- aws.smithy.kotlin:serde-json:1.4.20 (n) + +implementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:smithy-test:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) +\--- aws.smithy.kotlin:http-test:1.4.20 (n) + +testImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:http-test +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.ktor:ktor-server-cio:3.1.1 +| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-server-core:3.1.1 +| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- com.typesafe:config:1.4.3 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 +| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 +| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-events:3.1.1 +| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.fusesource.jansi:jansi:2.4.1 +| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- io.ktor:ktor-network:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- project :smithy-kotlin:runtime:serde:serde-cbor +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:codegen:rules-engine:allDeps + +------------------------------------------------------------ +Project ':tests:codegen:rules-engine' - AWS SDK for Kotlin's rules engine codegen integration test suite +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- project aws-config (n) ++--- project aws-core (n) +\--- project aws-endpoint (n) + +apiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) + +compileClasspath - Compile classpath for 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- project aws-sdk-codegen (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- aws.smithy.kotlin:serde-json:1.4.20 (n) + +implementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:smithy-test:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) +\--- aws.smithy.kotlin:http-test:1.4.20 (n) + +testImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:http-test +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.ktor:ktor-server-cio:3.1.1 +| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-server-core:3.1.1 +| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- com.typesafe:config:1.4.3 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 +| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 +| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-events:3.1.1 +| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.fusesource.jansi:jansi:2.4.1 +| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- io.ktor:ktor-network:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- project :smithy-kotlin:runtime:serde:serde-cbor +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +> Task :tests:codegen:smoke-tests:allDeps + +------------------------------------------------------------ +Project ':tests:codegen:smoke-tests' - AWS SDK for Kotlin's smoke test codegen test suite +------------------------------------------------------------ + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +api - API dependencies for 'main'. (n) ++--- project aws-config (n) ++--- project aws-core (n) +\--- project aws-endpoint (n) + +apiDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +apiElements - API elements for the 'main' feature. (n) +No dependencies + +apiElements-published (n) +No dependencies + +codegen ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 +| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | +--- org.jetbrains:annotations:23.0.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- com.squareup.okio:okio:3.9.1 +| \--- com.squareup.okio:okio-jvm:3.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) ++--- software.amazon.smithy:smithy-cli:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-syntax:1.53.0 +| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 +\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) + +compileClasspath - Compile classpath for 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +compileOnly - Compile only dependencies for 'main'. (n) +No dependencies + +compileOnlyDependenciesMetadata +No dependencies + +default - Configuration for default artifacts. (n) +No dependencies + +implementation - Implementation only dependencies for 'main'. (n) ++--- project aws-sdk-codegen (n) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:http:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth:1.4.20 (n) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) ++--- aws.smithy.kotlin:http-client:1.4.20 (n) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) ++--- aws.smithy.kotlin:identity-api:1.4.20 (n) ++--- aws.smithy.kotlin:runtime-core:1.4.20 (n) ++--- aws.smithy.kotlin:serde:1.4.20 (n) ++--- aws.smithy.kotlin:smithy-client:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) ++--- project aws-http (n) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) +\--- aws.smithy.kotlin:serde-json:1.4.20 (n) + +implementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json + +--- project :smithy-kotlin:runtime:serde (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +intransitiveDependenciesMetadata +No dependencies + +kotlinBuildToolsApiClasspath +\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 + +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) + +kotlinCompilerClasspath +\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinCompilerPluginClasspath +No dependencies + +kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation +\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 + | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | | \--- org.jetbrains:annotations:13.0 + | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) + | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +kotlinKlibCommonizerClasspath +\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 + | \--- org.jetbrains:annotations:13.0 + \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 + +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) + +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 + +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 + +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 + +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 + \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 + +kotlinNativeCompilerPluginClasspath +No dependencies + +kotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +kotlinScriptDefExtensions +No dependencies + +mainSourceElements - List of source directories contained in the Main SourceSet. (n) +No dependencies + +runtimeClasspath - Runtime classpath of 'main'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) +\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) + +runtimeElements - Runtime elements for the 'main' feature. (n) +No dependencies + +runtimeElements-published (n) +No dependencies + +runtimeOnly - Runtime only dependencies for 'main'. (n) +No dependencies + +smithyBuild +No dependencies + +smithyCli +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testApi - API dependencies for 'test'. (n) +No dependencies + +testApiDependenciesMetadata +No dependencies + +testCompileClasspath - Compile classpath for 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| +--- org.opentest4j:opentest4j:1.3.0 +| +--- org.junit.platform:junit-platform-commons:1.10.1 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- io.ktor:ktor-server-cio:3.1.1 +| \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| +--- org.slf4j:slf4j-api:2.0.16 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| +--- io.ktor:ktor-server-core:3.1.1 +| | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | +--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.typesafe:config:1.4.3 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | +--- io.ktor:ktor-utils:3.1.1 +| | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 +| | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http:3.1.1 +| | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-serialization:3.1.1 +| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-events:3.1.1 +| | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-http-cio:3.1.1 +| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- io.ktor:ktor-network:3.1.1 +| | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| +--- io.ktor:ktor-http-cio:3.1.1 (*) +| +--- io.ktor:ktor-websockets:3.1.1 (*) +| +--- io.ktor:ktor-network:3.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testCompileOnly - Compile only dependencies for 'test'. (n) +No dependencies + +testCompileOnlyDependenciesMetadata +No dependencies + +testImplementation - Implementation only dependencies for 'test'. (n) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) ++--- aws.smithy.kotlin:smithy-test:1.4.20 (n) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) +\--- aws.smithy.kotlin:http-test:1.4.20 (n) + +testImplementationDependenciesMetadata ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 +| | | | | \--- org.jetbrains:annotations:13.0 +| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:protocol:http (*) +| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults +| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- project :aws-runtime:aws-http +| +--- project :aws-runtime:aws-core (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| +--- project :smithy-kotlin:runtime:smithy-client (*) +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| +--- project :smithy-kotlin:runtime:serde (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) +| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testIntransitiveDependenciesMetadata +No dependencies + +testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) +No dependencies + +testKotlinScriptDefExtensions +No dependencies + +testRuntimeClasspath - Runtime classpath of 'test'. ++--- project :aws-runtime:aws-config +| +--- project :aws-runtime:aws-core +| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 +| | | | +--- org.jetbrains:annotations:23.0.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 +| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- com.squareup.okio:okio:3.9.1 +| | | \--- com.squareup.okio:okio-jvm:3.9.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) +| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:auth:identity-api +| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api +| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | +--- project :smithy-kotlin:runtime:auth:http-auth +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api +| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) +| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) +| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) +| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 +| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | \--- org.slf4j:slf4j-api:2.0.16 +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 +| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) +| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) +| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) +| +--- project :aws-runtime:aws-http +| | +--- project :aws-runtime:aws-core (*) +| | +--- project :aws-runtime:aws-endpoint +| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common +| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) +| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- project :aws-runtime:aws-core (*) +| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) +| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json +| | +--- project :smithy-kotlin:runtime:serde +| | | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default +| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) +| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) +| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) +| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) +| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) +| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) +| +--- project :aws-runtime:aws-endpoint (*) +| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols +| | +--- project :smithy-kotlin:runtime:smithy-client (*) +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- project :smithy-kotlin:runtime:runtime-core (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) +| | +--- project :smithy-kotlin:runtime:serde (*) +| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- project :aws-runtime:aws-core (*) ++--- project :aws-runtime:aws-endpoint (*) ++--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- project :codegen:aws-sdk-codegen +| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen +| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 +| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-build:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-waiters:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 +| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-diff:1.54.0 +| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 +| | | +--- software.amazon.smithy:smithy-utils:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- org.jsoup:jsoup:1.19.1 +| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen +| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 +| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 +| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) +| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) +| | \--- software.amazon.smithy:smithy-utils:1.54.0 +| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) +| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) +| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) ++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) ++--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) ++--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) ++--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) ++--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) ++--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) ++--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) ++--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) ++--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) ++--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) ++--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) ++--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) ++--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) ++--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) ++--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) ++--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream +| +--- project :smithy-kotlin:runtime:runtime-core (*) +| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) ++--- project :aws-runtime:aws-http (*) ++--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) ++--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) ++--- org.jetbrains.kotlin:kotlin-test:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 +| | +--- org.junit.platform:junit-platform-engine:1.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 +| | | +--- org.opentest4j:opentest4j:1.3.0 +| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) +| | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | \--- org.apiguardian:apiguardian-api:1.1.2 +| \--- org.junit.platform:junit-platform-launcher:1.10.1 +| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) +| \--- org.apiguardian:apiguardian-api:1.1.2 ++--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 +| +--- org.jetbrains:annotations:23.0.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) ++--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test +| +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- project :smithy-kotlin:runtime:protocol:http-test +| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 +| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | +--- io.ktor:ktor-server-cio:3.1.1 +| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 +| | | +--- org.slf4j:slf4j-api:2.0.16 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | +--- io.ktor:ktor-server-core:3.1.1 +| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 +| | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | +--- com.typesafe:config:1.4.3 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | +--- io.ktor:ktor-utils:3.1.1 +| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 +| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http:3.1.1 +| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-serialization:3.1.1 +| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-websockets:3.1.1 +| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-events:3.1.1 +| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-http-cio:3.1.1 +| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 +| | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | +--- io.ktor:ktor-network:3.1.1 +| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 +| | | | | | +--- org.slf4j:slf4j-api:2.0.16 +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) +| | | | | +--- io.ktor:ktor-http:3.1.1 (*) +| | | | | +--- io.ktor:ktor-io:3.1.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | | | \--- org.fusesource.jansi:jansi:2.4.1 +| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) +| | | +--- io.ktor:ktor-websockets:3.1.1 (*) +| | | +--- io.ktor:ktor-network:3.1.1 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) +| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) +| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) +| +--- project :smithy-kotlin:runtime:serde:serde-cbor +| | +--- project :smithy-kotlin:runtime:serde (*) +| | +--- project :smithy-kotlin:runtime:protocol:http (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) +| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) ++--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) +\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) + +testRuntimeOnly - Runtime only dependencies for 'test'. (n) +No dependencies + +(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. +(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. + +(n) - A dependency or dependency configuration that cannot be resolved. + +A web-based, searchable dependency report is available by adding the --scan option. + +[Incubating] Problems report is available at: file:///Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/aws-sdk-kotlin/build/reports/problems/problems-report.html + +Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. + +You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. + +For more on this, please refer to https://docs.gradle.org/8.12.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. + +BUILD SUCCESSFUL in 5s +90 actionable tasks: 24 executed, 66 up-to-date From f956c85b75d10938bf738611649dc6a27aaa67c7 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 15 Jul 2025 11:00:06 -0400 Subject: [PATCH 09/14] self review --- bom/build.gradle.kts | 7 ++----- gradle/libs.versions.toml | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/bom/build.gradle.kts b/bom/build.gradle.kts index 00a7e0a7b02..d22f6968624 100644 --- a/bom/build.gradle.kts +++ b/bom/build.gradle.kts @@ -116,12 +116,9 @@ publishing { from(components["versionCatalog"]) /* - Creates a dummy JAR for version catalog publishing - The `version-catalog` plugin doesn't generate one because it isn't needed but JReleaser requires a jar to be present in the version catalog component + Creates a placeholder JAR for version catalog publishing + The `version-catalog` plugin doesn't generate one because it isn't needed but JReleaser requires a jar https://docs.gradle.org/current/userguide/version_catalogs.html#sec:version-catalog-plugin - - Consuming published version catalogs with the dummy JAR still work - https://docs.gradle.org/current/userguide/version_catalogs.html#sec:importing-published-catalog */ artifact(tasks["versionCatalogJar"]) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b9e30af49e3..42d1b91a07b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.1.0-1.0.29" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.4.31-SNAPSHOT" +aws-kotlin-repo-tools-version = "0.4.33" # libs coroutines-version = "1.9.0" From 97297d65a82450c1b9be2d0b6873afc7e81dbfda Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 15 Jul 2025 11:03:46 -0400 Subject: [PATCH 10/14] self review --- gradle.properties | 2 +- temp.txt | 31100 -------------------------------------------- 2 files changed, 1 insertion(+), 31101 deletions(-) delete mode 100644 temp.txt diff --git a/gradle.properties b/gradle.properties index 5463d5f8601..501d0d2f11d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ kotlin.native.ignoreDisabledTargets=true org.gradle.jvmargs=-Xmx10g -XX:MaxMetaspaceSize=2G # sdk -sdkVersion=0.0.1 +sdkVersion=1.4.112-SNAPSHOT # dokka config (values specified at build-time as needed) smithyKotlinDocBaseUrl=https://sdk.amazonaws.com/kotlin/api/smithy-kotlin/api/$smithyKotlinRuntimeVersion/ diff --git a/temp.txt b/temp.txt deleted file mode 100644 index 9aa2c2b12b5..00000000000 --- a/temp.txt +++ /dev/null @@ -1,31100 +0,0 @@ -:services:dynamodb is not bootstrapped, skipping :hll:dynamodb-mapper and subprojects -Skipping :tests:benchmarks:service-benchmarks because these service(s) are not bootstrapped: [sns, sts, cloudwatch, cloudwatchevents, dynamodb, secretsmanager, iam] -Including build '/Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/smithy-kotlin' -Including build '/Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/aws-crt-kotlin' - -> Configure project :build-support -WARNING: Unsupported Kotlin plugin version. -The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `2.0.21` that might work differently than in the requested version `2.1.0`. - -> Configure project :aws-crt-kotlin:elasticurl -w: 'java' Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin. - -Consider adding a new subproject with 'java' plugin where the KMP project is added as a dependency. - -w: 'application' (also applies 'java' plugin) Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin. - -Consider adding a new subproject with 'application' plugin where the KMP project is added as a dependency. - - -> Configure project :buildSrc -WARNING: Unsupported Kotlin plugin version. -The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `2.0.21` that might work differently than in the requested version `2.1.0`. - -> Task :buildSrc:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :buildSrc:generateExternalPluginSpecBuilders UP-TO-DATE -> Task :buildSrc:extractPrecompiledScriptPluginPlugins UP-TO-DATE -> Task :buildSrc:compilePluginsBlocks UP-TO-DATE -> Task :buildSrc:generatePrecompiledScriptPluginAccessors UP-TO-DATE -> Task :buildSrc:generateScriptPluginAdapters UP-TO-DATE -> Task :buildSrc:compileKotlin UP-TO-DATE -> Task :buildSrc:compileJava NO-SOURCE -> Task :buildSrc:compileGroovy NO-SOURCE -> Task :buildSrc:pluginDescriptors UP-TO-DATE -> Task :buildSrc:processResources UP-TO-DATE -> Task :buildSrc:classes UP-TO-DATE -> Task :buildSrc:jar UP-TO-DATE -> Task :smithy-kotlin:runtime:runtime-core:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:runtime-core:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:runtime-core:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:runtime-core:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:runtime-core:transformJvmMainAtomicfu UP-TO-DATE -> Task :smithy-kotlin:runtime:runtime-core:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:serde:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:smithy-client:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:identity-api:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:observability:telemetry-api:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:observability:telemetry-api:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-api:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:identity-api:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:identity-api:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:identity-api:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:identity-api:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:smithy-client:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:smithy-client:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:smithy-client:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:smithy-client:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:http-auth-api:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:http:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:http:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:http:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-api:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-api:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:http-auth:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:http-client:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:http-client:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:http-client:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client:transformJvmMainAtomicfu UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:transformJvmMainAtomicfu UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-protocol-core:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:serde-xml:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:serde-xml:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-xml:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:serde:serde-xml:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-xml:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-xml-protocols:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:serde-json:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:serde-json:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-json:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:serde:serde-json:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-json:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-json-protocols:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:aws-credentials:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:aws-credentials:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-credentials:transformJvmMainAtomicfu UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-credentials:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-common:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:aws-signing-common:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-common:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-event-stream:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:aws-event-stream:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:aws-event-stream:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-default:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:aws-signing-default:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:aws-signing-default:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-aws:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:auth:http-auth-aws:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:auth:http-auth-aws:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:observability:logging-slf4j2:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:observability:logging-slf4j2:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:logging-slf4j2:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:transformJvmMainAtomicfu UP-TO-DATE -> Task :smithy-kotlin:runtime:observability:telemetry-defaults:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default:jvmJar UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-form-url:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :smithy-kotlin:runtime:serde:serde-form-url:compileKotlinJvm UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmProcessResources NO-SOURCE -> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmMainClasses UP-TO-DATE -> Task :smithy-kotlin:runtime:serde:serde-form-url:jvmJar UP-TO-DATE - -> Configure project : -dokka -dokkaHtmlGeneratorRuntime -dokkaHtmlGeneratorRuntimeResolver~internal -dokkaHtmlModuleOutputDirectoriesConsumable~internal -dokkaHtmlModuleOutputDirectoriesResolver~internal -dokkaHtmlPlugin -dokkaHtmlPluginIntransitiveResolver~internal -dokkaHtmlPublicationPlugin -dokkaHtmlPublicationPluginApiOnlyConsumable~internal -dokkaHtmlPublicationPluginApiOnly~internal -dokkaHtmlPublicationPluginResolver~internal -dokkaPlugin - - - - - - - - - - - - - - - - - - - - - - - - - -> Task :build-support:checkKotlinGradlePluginConfigurationErrors SKIPPED -> Task :build-support:compileKotlin UP-TO-DATE -> Task :build-support:compileJava NO-SOURCE -> Task :build-support:pluginDescriptors UP-TO-DATE -> Task :build-support:processResources UP-TO-DATE -> Task :build-support:classes UP-TO-DATE -> Task :build-support:jar UP-TO-DATE - -> Configure project :services:s3 -w: Kotlin Source Set 'jvmE2eTest' can't depend on 'jvmMain' which is a default source set for compilation. -None of source sets can depend on the compilation default source sets. -Please remove this dependency edge. - - -> Task :allDeps - ------------------------------------------------------------- -Root project 'aws-sdk-kotlin' ------------------------------------------------------------- - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -+--- project aws-runtime (n) -+--- project services (n) -\--- project hll (n) - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -+--- project :aws-runtime -| +--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| +--- project :aws-runtime:aws-endpoint -| \--- project :aws-runtime:aws-http -+--- project :services -| \--- project :services:s3 -\--- project :hll - \--- project :hll:hll-mapping-core - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -+--- project :aws-runtime -| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.dokka:templating-plugin:2.0.0 -| | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -+--- project :services -| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) -\--- project :hll - \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -ktlint -\--- com.pinterest.ktlint:ktlint-cli:1.3.0 - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :aws-runtime:allDeps - ------------------------------------------------------------- -Project ':aws-runtime' - AWS client runtime support for generated service clients ------------------------------------------------------------- - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -\--- org.ow2.asm:asm-tree:9.6 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -\--- org.ow2.asm:asm-tree:9.6 - \--- org.ow2.asm:asm:9.6 - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -+--- project aws-config (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -\--- project aws-http (n) - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -+--- project :aws-runtime:aws-config -+--- project :aws-runtime:aws-core -+--- project :aws-runtime:aws-endpoint -\--- project :aws-runtime:aws-http - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -+--- project :aws-runtime:aws-config -| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.dokka:templating-plugin:2.0.0 -| | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) -+--- project :aws-runtime:aws-core -| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) -+--- project :aws-runtime:aws-endpoint -| \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) -\--- project :aws-runtime:aws-http - \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (*) - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jacocoAgent - The Jacoco agent to use to get coverage data. -\--- org.jacoco:org.jacoco.agent:0.8.12 - -jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. -\--- org.jacoco:org.jacoco.ant:0.8.12 - +--- org.jacoco:org.jacoco.core:0.8.12 - | +--- org.ow2.asm:asm:9.7 - | +--- org.ow2.asm:asm-commons:9.7 - | | +--- org.ow2.asm:asm:9.7 - | | \--- org.ow2.asm:asm-tree:9.7 - | | \--- org.ow2.asm:asm:9.7 - | \--- org.ow2.asm:asm-tree:9.7 (*) - +--- org.jacoco:org.jacoco.report:0.8.12 - | \--- org.jacoco:org.jacoco.core:0.8.12 (*) - \--- org.jacoco:org.jacoco.agent:0.8.12 - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :bom:allDeps - ------------------------------------------------------------- -Project ':bom' - Provides a version catalog ------------------------------------------------------------- - -api (n) -No dependencies - -apiElements (n) -No dependencies - -classpath -No dependencies - -enforcedApiElements (n) -No dependencies - -enforcedRuntimeElements (n) -No dependencies - -runtime (n) -No dependencies - -runtimeElements (n) -No dependencies - -signatures (n) -No dependencies - -versionCatalog (n) -No dependencies - -versionCatalogElements - Artifacts for the version catalog (n) -No dependencies - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :codegen:allDeps - ------------------------------------------------------------- -Project ':codegen' ------------------------------------------------------------- - -No configurations - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :dokka-aws:allDeps - ------------------------------------------------------------- -Project ':dokka-aws' - Custom Dokka plugin for AWS Kotlin SDK API docs ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -apiDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -compileClasspath - Compile classpath for 'main'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -\--- org.jetbrains.dokka:dokka-core:2.0.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -compileOnlyDependenciesMetadata -+--- org.jetbrains.dokka:dokka-base:2.0.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -\--- org.jetbrains.dokka:dokka-core:2.0.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 - -default - Configuration for default artifacts. (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -+--- project :dokka-aws (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws (*) - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -implementation - Implementation only dependencies for 'main'. (n) -No dependencies - -implementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jsoup:jsoup:1.20.1 -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.jsoup:jsoup:1.20.1 (n) -+--- org.junit.jupiter:junit-jupiter:5.10.5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) - -testImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jsoup:jsoup:1.20.1 -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -+--- org.jsoup:jsoup:1.20.1 -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 (*) -| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 -| +--- org.junit.platform:junit-platform-engine:1.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) - \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 - +--- org.junit.platform:junit-platform-engine:1.10.5 (*) - \--- org.apiguardian:apiguardian-api:1.1.2 - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :hll:allDeps - ------------------------------------------------------------- -Project ':hll' - High-level libraries for the AWS SDK for Kotlin ------------------------------------------------------------- - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -\--- org.ow2.asm:asm-tree:9.6 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -\--- org.ow2.asm:asm-tree:9.6 - \--- org.ow2.asm:asm:9.6 - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -\--- project hll-mapping-core (n) - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -\--- project :hll:hll-mapping-core - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -\--- project :hll:hll-mapping-core - \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 - +--- org.jetbrains.dokka:dokka-base:2.0.0 - | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 - | | +--- org.jsoup:jsoup:1.16.1 - | | +--- org.jetbrains:markdown:0.7.3 - | | | \--- org.jetbrains:markdown-jvm:0.7.3 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 - | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) - | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) - | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 - | | +--- org.jetbrains:annotations:23.0.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 - | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | +--- org.jsoup:jsoup:1.16.1 - | +--- org.freemarker:freemarker:2.3.32 - | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) - | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 - | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 - | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 - | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 - | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) - | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) - | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) - | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) - +--- org.jetbrains.dokka:templating-plugin:2.0.0 - | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) - | +--- org.jsoup:jsoup:1.16.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) - +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) - +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jacocoAgent - The Jacoco agent to use to get coverage data. -\--- org.jacoco:org.jacoco.agent:0.8.12 - -jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. -\--- org.jacoco:org.jacoco.ant:0.8.12 - +--- org.jacoco:org.jacoco.core:0.8.12 - | +--- org.ow2.asm:asm:9.7 - | +--- org.ow2.asm:asm-commons:9.7 - | | +--- org.ow2.asm:asm:9.7 - | | \--- org.ow2.asm:asm-tree:9.7 - | | \--- org.ow2.asm:asm:9.7 - | \--- org.ow2.asm:asm-tree:9.7 (*) - +--- org.jacoco:org.jacoco.report:0.8.12 - | \--- org.jacoco:org.jacoco.core:0.8.12 (*) - \--- org.jacoco:org.jacoco.agent:0.8.12 - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :services:allDeps - ------------------------------------------------------------- -Project ':services' ------------------------------------------------------------- - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -\--- project s3 (n) - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -\--- project :services:s3 - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -\--- project :services:s3 - \--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 - +--- org.jetbrains.dokka:dokka-base:2.0.0 - | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 - | | +--- org.jsoup:jsoup:1.16.1 - | | +--- org.jetbrains:markdown:0.7.3 - | | | \--- org.jetbrains:markdown-jvm:0.7.3 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.0.20 - | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.20 (c) - | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.8.20 (c) - | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.8.20 (c) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 - | | +--- org.jetbrains:annotations:23.0.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 - | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | +--- org.jsoup:jsoup:1.16.1 - | +--- org.freemarker:freemarker:2.3.32 - | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.0.20 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -> 2.0.20 (*) - | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 - | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 - | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 - | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 - | | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) - | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) - | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) - | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) - +--- org.jetbrains.dokka:templating-plugin:2.0.0 - | +--- org.jetbrains.dokka:dokka-base:2.0.0 (*) - | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) - | +--- org.jsoup:jsoup:1.16.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) - +--- org.jetbrains.dokka:analysis-markdown:2.0.0 (*) - +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 (*) - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:allDeps - ------------------------------------------------------------- -Project ':tests' ------------------------------------------------------------- - -No configurations - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :aws-runtime:aws-config:allDeps - ------------------------------------------------------------- -Project ':aws-runtime:aws-config' - Support for AWS configuration ------------------------------------------------------------- - -allSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) - -bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) - -commonMainApi (n) -+--- project aws-core (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -commonMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonMainCompileOnly (n) -\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) - -commonMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonMainImplementation (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:serde-json:1.4.20 (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:serde-xml:1.4.20 (n) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 (n) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) - -commonMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -No dependencies - -commonTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -+--- io.kotest:kotest-assertions-core:5.9.1 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:http-test:1.4.20 (n) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (n) -+--- io.kotest:kotest-framework-datatest:5.9.1 (n) -\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) - -commonTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 -| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.slf4j:slf4j-api:2.0.16 -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :aws-runtime:aws-core (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- project :smithy-kotlin:runtime:serde:serde-json (*) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -+--- project aws-core (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -\--- org.jetbrains.kotlinx:atomicfu:0.25.0 (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- project aws-core (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:serde-json:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:serde-xml:1.4.20 (n) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 (n) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| \--- io.kotest:kotest-framework-datatest-jvm:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 -| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| \--- io.mockk:mockk-jvm:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- io.mockk:mockk-dsl-jvm:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | \--- io.mockk:mockk-agent-jvm:1.13.13 -| | +--- org.objenesis:objenesis:3.3 -| | +--- net.bytebuddy:byte-buddy:1.14.17 -| | +--- net.bytebuddy:byte-buddy-agent:1.14.17 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- io.mockk:mockk-agent-api-jvm:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- io.mockk:mockk-core-jvm:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- io.kotest:kotest-runner-junit5-jvm:5.9.1 -| +--- io.kotest:kotest-framework-api:5.9.1 -| | \--- io.kotest:kotest-framework-api-jvm:5.9.1 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-framework-engine:5.9.1 -| | \--- io.kotest:kotest-framework-engine-jvm:5.9.1 -| | +--- io.github.classgraph:classgraph:4.8.172 -| | +--- io.kotest:kotest-framework-discovery:5.9.1 -| | | \--- io.kotest:kotest-framework-discovery-jvm:5.9.1 -| | | +--- io.kotest:kotest-common:5.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- com.github.ajalt:mordant:1.2.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.21 -> 2.1.10 (*) -| | | \--- com.github.ajalt:colormath:1.2.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.51 -> 2.1.10 (*) -| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| | +--- io.kotest:kotest-common:5.9.1 (*) -| | +--- io.kotest:kotest-framework-api:5.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- io.kotest:kotest-framework-discovery:5.9.1 (*) -| +--- io.kotest:kotest-assertions-core:5.9.1 (*) -| +--- io.kotest:kotest-extensions:5.9.1 -| | \--- io.kotest:kotest-extensions-jvm:5.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- io.kotest:kotest-framework-concurrency:5.9.1 -| | \--- io.kotest:kotest-framework-concurrency-jvm:5.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- org.junit.platform:junit-platform-engine:1.8.2 -| | +--- org.junit:junit-bom:5.8.2 -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (c) -| | | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (c) -| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) -| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) -| | +--- org.opentest4j:opentest4j:1.2.0 -> 1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.platform:junit-platform-suite-api:1.8.2 -| | +--- org.junit:junit-bom:5.8.2 (*) -| | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.platform:junit-platform-launcher:1.8.2 -| | +--- org.junit:junit-bom:5.8.2 (*) -| | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -+--- org.slf4j:slf4j-simple:2.0.16 (n) -+--- io.mockk:mockk:1.13.13 (n) -\--- io.kotest:kotest-runner-junit5:5.9.1 (n) - -jvmTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.25.0} -> 0.25.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-datatest:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.kotest:kotest-runner-junit5:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.7.3} -> 1.7.3 (c) -+--- io.kotest:kotest-framework-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.mockk:mockk-dsl:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-agent-api:{strictly 1.13.13} -> 1.13.13 (c) -+--- io.mockk:mockk-core:{strictly 1.13.13} -> 1.13.13 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.slf4j:slf4j-api:2.0.16 -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :aws-runtime:aws-core (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- project :smithy-kotlin:runtime:serde:serde-json (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- io.ktor:ktor-server-cio:3.1.1 -| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-server-core:3.1.1 -| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- com.typesafe:config:1.4.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 -| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http:3.1.1 -| | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-events:3.1.1 -| | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.fusesource.jansi:jansi:2.4.1 -| | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- io.ktor:ktor-network:3.1.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- io.kotest:kotest-framework-datatest:5.9.1 -| \--- io.kotest:kotest-framework-datatest-jvm:5.9.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| \--- io.kotest:kotest-framework-api:5.9.1 -| \--- io.kotest:kotest-framework-api-jvm:5.9.1 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 -| \--- org.jetbrains.kotlinx:atomicfu-jvm:0.25.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- io.mockk:mockk:1.13.13 -| \--- io.mockk:mockk-jvm:1.13.13 -| +--- io.mockk:mockk-dsl:1.13.13 -| | \--- io.mockk:mockk-dsl-jvm:1.13.13 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) -| | \--- io.mockk:mockk-core:1.13.13 -| | \--- io.mockk:mockk-core-jvm:1.13.13 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) -| +--- io.mockk:mockk-agent:1.13.13 -| | \--- io.mockk:mockk-agent-jvm:1.13.13 -| | +--- org.objenesis:objenesis:3.3 -| | +--- net.bytebuddy:byte-buddy:1.14.17 -| | +--- net.bytebuddy:byte-buddy-agent:1.14.17 -| | +--- io.mockk:mockk-agent-api:1.13.13 -| | | \--- io.mockk:mockk-agent-api-jvm:1.13.13 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) -| | \--- io.mockk:mockk-core:1.13.13 (*) -| +--- io.mockk:mockk-agent-api:1.13.13 (*) -| +--- io.mockk:mockk-core:1.13.13 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| +--- junit:junit:4.13.2 -| | \--- org.hamcrest:hamcrest-core:1.3 -| +--- org.junit.jupiter:junit-jupiter:5.8.2 -| | +--- org.junit:junit-bom:5.8.2 -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (c) -| | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -> 5.10.1 (c) -| | | +--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (c) -| | | +--- org.junit.platform:junit-platform-engine:1.8.2 -> 1.10.1 (c) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 -> 1.10.1 (c) -| | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) -| | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) -| | | \--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) -| | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) -| | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -> 5.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.0 -> 2.1.10 (*) -+--- io.kotest:kotest-runner-junit5:5.9.1 -| \--- io.kotest:kotest-runner-junit5-jvm:5.9.1 -| +--- io.kotest:kotest-framework-api:5.9.1 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-framework-engine:5.9.1 -| | \--- io.kotest:kotest-framework-engine-jvm:5.9.1 -| | +--- io.github.classgraph:classgraph:4.8.172 -| | +--- io.kotest:kotest-framework-discovery:5.9.1 -| | | \--- io.kotest:kotest-framework-discovery-jvm:5.9.1 -| | | +--- io.kotest:kotest-common:5.9.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | | \--- io.github.classgraph:classgraph:4.8.172 -| | +--- com.github.ajalt:mordant:1.2.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.21 -> 2.1.10 (*) -| | | \--- com.github.ajalt:colormath:1.2.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.51 -> 2.1.10 (*) -| | +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| | +--- io.kotest:kotest-common:5.9.1 (*) -| | +--- io.kotest:kotest-framework-api:5.9.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 -> 1.10.1 (*) -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.8.0 -> 1.10.1 -| | | +--- net.bytebuddy:byte-buddy:1.10.9 -> 1.14.17 -| | | +--- net.bytebuddy:byte-buddy-agent:1.10.9 -> 1.14.17 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| | | +--- net.java.dev.jna:jna:5.9.0 -| | | +--- net.java.dev.jna:jna-platform:5.9.0 -| | | | \--- net.java.dev.jna:jna:5.9.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- io.kotest:kotest-framework-discovery:5.9.1 (*) -| +--- io.kotest:kotest-assertions-core:5.9.1 (*) -| +--- io.kotest:kotest-extensions:5.9.1 -| | \--- io.kotest:kotest-extensions-jvm:5.9.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | +--- io.kotest:kotest-framework-api:5.9.1 (*) -| | +--- io.kotest:kotest-framework-engine:5.9.1 (*) -| | \--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-framework-concurrency:5.9.1 -| | \--- io.kotest:kotest-framework-concurrency-jvm:5.9.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- io.kotest:kotest-common:5.9.1 (*) -| | \--- io.kotest:kotest-framework-api:5.9.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- org.junit.platform:junit-platform-engine:1.8.2 -> 1.10.1 (*) -| +--- org.junit.platform:junit-platform-suite-api:1.8.2 -| | +--- org.junit:junit-bom:5.8.2 (*) -| | \--- org.junit.platform:junit-platform-commons:1.8.2 -> 1.10.1 (*) -| +--- org.junit.platform:junit-platform-launcher:1.8.2 -> 1.10.1 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -> 5.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -+--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 -\--- org.jetbrains.kotlin:kotlin-atomicfu-compiler-plugin-embeddable:2.1.0 - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -+--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 -\--- org.jetbrains.kotlin:kotlin-atomicfu-compiler-plugin-embeddable:2.1.0 - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -+--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable:2.1.0 - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -> 0.25.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 2.0.0} -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:atomicfu:0.25.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -runtimeClasspath -No dependencies - -signatures (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :aws-runtime:aws-core:allDeps - ------------------------------------------------------------- -Project ':aws-runtime:aws-core' - AWS client runtime core ------------------------------------------------------------- - -allSourceSetsCompileDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) - -bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -commonMainApi (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -commonMainApiDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainCompileOnly (n) -No dependencies - -commonMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainImplementation (n) -No dependencies - -commonMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -No dependencies - -commonTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -+--- io.kotest:kotest-assertions-core:5.9.1 (n) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) - -commonTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.slf4j:slf4j-simple:2.0.16 (n) - -jvmTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:identity-api -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -signatures (n) -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :aws-runtime:aws-endpoint:allDeps - ------------------------------------------------------------- -Project ':aws-runtime:aws-endpoint' - AWS Endpoint Support ------------------------------------------------------------- - -allSourceSetsCompileDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- project :aws-runtime:aws-core - +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) - -bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -commonMainApi (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -commonMainApiDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainCompileOnly (n) -No dependencies - -commonMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainImplementation (n) -\--- project aws-core (n) - -commonMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -No dependencies - -commonTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -\--- io.kotest:kotest-assertions-core:5.9.1 (n) - -commonTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- project :aws-runtime:aws-core - +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- project :aws-runtime:aws-core - +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) -\--- project aws-core (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.slf4j:slf4j-simple:2.0.16 (n) - -jvmTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -+--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| +--- project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:protocol:http -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- project :aws-runtime:aws-core - +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -signatures (n) -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :aws-runtime:aws-http:allDeps - ------------------------------------------------------------- -Project ':aws-runtime:aws-http' - HTTP core for AWS service clients ------------------------------------------------------------- - -allSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) - -bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -commonMainApi (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -commonMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainCompileOnly (n) -No dependencies - -commonMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainImplementation (n) -No dependencies - -commonMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -\--- aws.smithy.kotlin:http-test:1.4.20 (n) - -commonTestApiDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -+--- io.kotest:kotest-assertions-core:5.9.1 (n) -\--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) - -commonTestImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :aws-runtime:aws-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.slf4j:slf4j-simple:2.0.16 (n) - -jvmTestImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.10.1 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :aws-runtime:aws-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | | +--- org.opentest4j:opentest4j:1.3.0 -| | | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | | +--- org.opentest4j:opentest4j:1.3.0 -| | | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.junit.platform:junit-platform-launcher:1.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- io.ktor:ktor-server-cio:3.1.1 -| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-server-core:3.1.1 -| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- com.typesafe:config:1.4.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 -| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http:3.1.1 -| | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-events:3.1.1 -| | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.fusesource.jansi:jansi:2.4.1 -| | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- io.ktor:ktor-network:3.1.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -> 2.1.10 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -signatures (n) -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :codegen:aws-sdk-codegen:allDeps - ------------------------------------------------------------- -Project ':codegen:aws-sdk-codegen' - Codegen support for AWS SDK for Kotlin ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 (n) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 (n) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 (n) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 (n) -\--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 (n) - -apiDependenciesMetadata -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -\--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -compileClasspath - Compile classpath for 'main'. -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 -| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 - | +--- org.jetbrains:annotations:23.0.0 - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -coverageDataElementsForTest - Binary data file containing results of Jacoco test coverage reporting for the test Test Suite's test target. (n) -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 (n) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 (n) -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 (n) -\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) - -implementationDependenciesMetadata -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 -| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 - | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -jacocoAgent - The Jacoco agent to use to get coverage data. -\--- org.jacoco:org.jacoco.agent:0.8.12 - -jacocoAnt - The Jacoco ant tasks to use to get execute Gradle tasks. -\--- org.jacoco:org.jacoco.ant:0.8.12 - +--- org.jacoco:org.jacoco.core:0.8.12 - | +--- org.ow2.asm:asm:9.7 - | +--- org.ow2.asm:asm-commons:9.7 - | | +--- org.ow2.asm:asm:9.7 - | | \--- org.ow2.asm:asm-tree:9.7 - | | \--- org.ow2.asm:asm:9.7 - | \--- org.ow2.asm:asm-tree:9.7 (*) - +--- org.jacoco:org.jacoco.report:0.8.12 - | \--- org.jacoco:org.jacoco.core:0.8.12 (*) - \--- org.jacoco:org.jacoco.agent:0.8.12 - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jsoup:jsoup:1.19.1 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.54.0 -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 - | +--- org.jetbrains:annotations:23.0.0 - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- com.squareup.okio:okio:3.9.1 - \--- com.squareup.okio:okio-jvm:3.9.1 - \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 -| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-api:2.0.16 -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 - \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 - +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 - | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 (c) - | +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 (c) - | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (c) - | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 (c) - +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 - \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 - +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.junit.jupiter:junit-jupiter:5.10.5 (n) -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 (n) -+--- org.slf4j:slf4j-api:2.0.16 (n) -+--- org.slf4j:slf4j-simple:2.0.16 (n) -\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (n) - -testImplementationDependenciesMetadata -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.53.0 -| | +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.53.0 -> 1.54.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -| \--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-api:2.0.16 -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-build:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- org.jsoup:jsoup:1.19.1 -+--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.54.0 -+--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 (*) -| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 -| +--- org.junit.platform:junit-platform-engine:1.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 -| +--- org.junit.platform:junit-platform-engine:1.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen-testutils -| +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| +--- org.junit.jupiter:junit-jupiter:5.10.5 (*) -| +--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -+--- org.slf4j:slf4j-api:2.0.16 -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 - \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 - +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 - | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 (c) - | +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.7.3 (c) - | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 (c) - | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 (c) - +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 - \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3 - +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :codegen:protocol-tests:allDeps - ------------------------------------------------------------- -Project ':codegen:protocol-tests' - Smithy protocol test suite ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -No dependencies - -apiDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -\--- software.amazon.smithy:smithy-aws-protocol-tests:1.53.0 - +--- software.amazon.smithy:smithy-cli:1.53.0 (*) - +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) - +--- software.amazon.smithy:smithy-protocol-traits:1.53.0 -> 1.54.0 (*) - +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) - \--- software.amazon.smithy:smithy-validation-model:1.53.0 - \--- software.amazon.smithy:smithy-cli:1.53.0 (*) - -compileClasspath - Compile classpath for 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -No dependencies - -implementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -No dependencies - -testImplementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :codegen:sdk:allDeps - ------------------------------------------------------------- -Project ':codegen:sdk' - AWS SDK codegen tasks ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -No dependencies - -apiDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -+--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -\--- software.amazon.smithy:smithy-aws-smoke-test-model:1.53.0 - \--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) - -compileClasspath - Compile classpath for 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -No dependencies - -implementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -No dependencies - -testImplementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :hll:hll-codegen:allDeps - ------------------------------------------------------------- -Project ':hll:hll-codegen' - Common code-generation utilities used by AWS SDK for Kotlin's high level libraries ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -\--- project aws-core (n) - -apiDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -compileClasspath - Compile classpath for 'main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 (n) -\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) - -implementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -signatures (n) -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.junit.jupiter:junit-jupiter:5.10.5 (n) -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) - -testImplementationDependenciesMetadata -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| +--- org.junit:junit-bom:5.10.5 (*) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- project :aws-runtime:aws-core -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | +--- org.jetbrains:annotations:23.0.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- com.squareup.okio:okio:3.9.1 -| | \--- com.squareup.okio:okio-jvm:3.9.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- org.junit.jupiter:junit-jupiter:5.10.5 -| +--- org.junit:junit-bom:5.10.5 -| | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| | \--- org.junit.platform:junit-platform-engine:1.10.5 (c) -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 (*) -| | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 -| +--- org.junit.platform:junit-platform-engine:1.10.5 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.junit.jupiter:junit-jupiter-params:5.10.5 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 - +--- org.jetbrains.kotlin:kotlin-test:2.1.0 - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) - \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 - +--- org.junit.platform:junit-platform-engine:1.10.5 (*) - \--- org.apiguardian:apiguardian-api:1.1.2 - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :hll:hll-mapping-core:allDeps - ------------------------------------------------------------- -Project ':hll:hll-mapping-core' - Common data mapping utilities used by AWS SDK for Kotlin's high level libraries ------------------------------------------------------------- - -allSourceSetsCompileDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 - | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -bcv-rt-jvm-cp - Runtime classpath for running binary-compatibility-validator. (n) -+--- org.ow2.asm:asm:9.6 (n) -+--- org.ow2.asm:asm-tree:9.6 (n) -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 (n) - -bcv-rt-jvm-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -+--- org.ow2.asm:asm:9.6 -+--- org.ow2.asm:asm-tree:9.6 -| \--- org.ow2.asm:asm:9.6 -\--- org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.0 - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -bcv-rt-klib-cp - Runtime classpath for running binary-compatibility-validator. (n) -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (n) - -bcv-rt-klib-cp-resolver - Resolve the runtime classpath for running binary-compatibility-validator. -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -commonMainApi (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -commonMainApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainCompileOnly (n) -No dependencies - -commonMainCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainImplementation (n) -\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) - -commonMainImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -No dependencies - -commonTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -\--- io.kotest:kotest-assertions-core:5.9.1 (n) - -commonTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 - | +--- org.jetbrains:annotations:23.0.0 - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 - | +--- org.jetbrains:annotations:23.0.0 - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 - | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) - | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- com.squareup.okio:okio:3.9.1 - \--- com.squareup.okio:okio-jvm:3.9.1 - \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) -\--- aws.smithy.kotlin:runtime-core:1.4.20 (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5 (n) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (n) -\--- org.slf4j:slf4j-simple:2.0.16 (n) - -jvmTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- io.kotest:kotest-assertions-core:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- io.kotest:kotest-assertions-core-jvm:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- io.kotest:kotest-assertions-shared:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.9.23} -> 1.9.23 (c) -+--- io.kotest:kotest-common:{strictly 5.9.1} -> 5.9.1 (c) -+--- io.kotest:kotest-assertions-api:{strictly 5.9.1} -> 5.9.1 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -+--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -> 23.0.0 -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- io.kotest:kotest-assertions-core:5.9.1 -| \--- io.kotest:kotest-assertions-core-jvm:5.9.1 -| +--- io.kotest:kotest-assertions-shared:5.9.1 -| | \--- io.kotest:kotest-assertions-shared-jvm:5.9.1 -| | +--- io.kotest:kotest-assertions-api:5.9.1 -| | | \--- io.kotest:kotest-assertions-api-jvm:5.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | +--- io.github.java-diff-utils:java-diff-utils:4.12 -| | +--- org.opentest4j:opentest4j:1.3.0 -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | +--- io.kotest:kotest-common:5.9.1 -| | | \--- io.kotest:kotest-common-jvm:5.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.0 -> 1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:1.9.23 (*) -| +--- io.kotest:kotest-common:5.9.1 (*) -| +--- io.kotest:kotest-assertions-api:5.9.1 (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -+--- io.kotest:kotest-assertions-core-jvm:5.9.1 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -\--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core - +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) - | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 - | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 - | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -signatures (n) -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :services:s3:allDeps - ------------------------------------------------------------- -Project ':services:s3' - The AWS SDK for Kotlin client for S3 ------------------------------------------------------------- - -allE2eTestSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.slf4j:slf4j-simple:2.0.16 - \--- org.slf4j:slf4j-api:2.0.16 - -allSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults - +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -allTestSourceSetsCompileDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -commonMainApi (n) -+--- project aws-config (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) -\--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) - -commonMainApiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainCompileOnly (n) -No dependencies - -commonMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainImplementation (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT (n) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT (n) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT (n) - -commonMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainIntransitiveDependenciesMetadata -No dependencies - -commonMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonMainRuntimeOnly (n) -No dependencies - -commonTestApi (n) -No dependencies - -commonTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestCompileOnly (n) -No dependencies - -commonTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test (n) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:http-test:1.4.20 (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -\--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT (n) - -commonTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestIntransitiveDependenciesMetadata -No dependencies - -commonTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -commonTestRuntimeOnly (n) -No dependencies - -dokka - Fetch all Dokka files from all configurations in other subprojects. (n) -No dependencies - -dokkaHtmlGeneratorRuntime - Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. (n) -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-core:2.0.0 (n) - -dokkaHtmlGeneratorRuntimeResolver~internal - [Internal Dokka Configuration] Dokka Generator runtime classpath for html - will be used in Dokka Worker. Should contain all transitive dependencies, plugins (and their transitive dependencies), so Dokka Worker can run. -+--- org.jetbrains.dokka:analysis-kotlin-descriptors:2.0.0 -+--- org.jetbrains.dokka:dokka-core:2.0.0 -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 -| | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (c) -| | | | +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.1 (c) -| | | | \--- com.fasterxml.jackson.module:jackson-module-kotlin:2.19.1 (c) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25 -> 2.0.20 (*) -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7 -> 2.19.1 -| | +--- com.fasterxml.jackson.core:jackson-core:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.1 (*) -| | +--- com.fasterxml.jackson.core:jackson-databind:2.19.1 (*) -| | +--- org.codehaus.woodstox:stax2-api:4.2.2 -| | +--- com.fasterxml.woodstox:woodstox-core:7.1.1 -| | | \--- org.codehaus.woodstox:stax2-api:4.2.2 -| | \--- com.fasterxml.jackson:jackson-bom:2.19.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -| +--- org.jetbrains.dokka:dokka-base:2.0.0 -| | +--- org.jetbrains.dokka:analysis-markdown:2.0.0 -| | | +--- org.jsoup:jsoup:1.16.1 -| | | +--- org.jetbrains:markdown:0.7.3 -| | | | \--- org.jetbrains:markdown-jvm:0.7.3 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| | +--- org.jsoup:jsoup:1.16.1 -| | +--- org.freemarker:freemarker:2.3.32 -| | +--- org.jetbrains.kotlinx:kotlinx-html-jvm:0.9.1 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20 -| | +--- com.fasterxml.jackson.module:jackson-module-kotlin:2.12.7 -> 2.19.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -| | \--- com.fasterxml.jackson.core:jackson-databind:2.12.7.1 -> 2.19.1 (c) -| +--- org.jetbrains.kotlin:kotlin-reflect -> 2.0.20 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -| +--- org.jsoup:jsoup:1.16.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-reflect:2.0.20 (c) -+--- org.jetbrains.dokka:dokka-base:2.0.0 (*) -\--- project :dokka-aws - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -dokkaHtmlModuleOutputDirectoriesConsumable~internal - [Internal Dokka Configuration] Provides Dokka html ModuleOutputDirectories files for consumption by other subprojects. (n) -No dependencies - -dokkaHtmlModuleOutputDirectoriesResolver~internal - [Internal Dokka Configuration] Resolves Dokka html ModuleOutputDirectories files. -No dependencies - -dokkaHtmlPlugin - Dokka Plugins classpath for html. (n) -+--- org.jetbrains.dokka:templating-plugin:2.0.0 (n) -\--- org.jetbrains.dokka:dokka-base:2.0.0 (n) - -dokkaHtmlPluginIntransitiveResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for html. Fetch only the plugins (no transitive dependencies) for use in the Dokka JSON Configuration. -+--- org.jetbrains.dokka:templating-plugin:2.0.0 -+--- org.jetbrains.dokka:dokka-base:2.0.0 -\--- project :dokka-aws - -dokkaHtmlPublicationPlugin - Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnlyConsumable~internal - [Internal Dokka Configuration] Shared Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -No dependencies - -dokkaHtmlPublicationPluginApiOnly~internal - [Internal Dokka Configuration] Dokka Plugins for consumers that will assemble a html Publication using the Dokka Module that this project produces. (n) -\--- org.jetbrains.dokka:all-modules-page-plugin:2.0.0 (n) - -dokkaHtmlPublicationPluginResolver~internal - [Internal Dokka Configuration] Resolves Dokka Plugins classpath for a html Publication (consisting of one or more Dokka Modules). -No dependencies - -dokkaPlugin - Dokka Plugins classpath, that will be used by all formats. (n) -\--- project dokka-aws (n) - -e2eTestKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -e2eTestKotlinScriptDefExtensions -No dependencies - -jvmAndNativeMainApi (n) -No dependencies - -jvmAndNativeMainApiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainCompileOnly (n) -No dependencies - -jvmAndNativeMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainImplementation (n) -No dependencies - -jvmAndNativeMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeMainRuntimeOnly (n) -No dependencies - -jvmAndNativeTestApi (n) -No dependencies - -jvmAndNativeTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestCompileOnly (n) -No dependencies - -jvmAndNativeTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestImplementation (n) -No dependencies - -jvmAndNativeTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestIntransitiveDependenciesMetadata -No dependencies - -jvmAndNativeTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmAndNativeTestRuntimeOnly (n) -No dependencies - -jvmApiElements - API elements for main. (n) -No dependencies - -jvmApiElements-published (n) -No dependencies - -jvmCompilationApi - API dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationCompileOnly - Compile only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationImplementation - Implementation only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompilationRuntimeOnly - Runtime only dependencies for 'jvm/main'. (n) -No dependencies - -jvmCompileClasspath - Compile classpath for 'jvm/main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults - +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -jvmE2eTestApi (n) -\--- aws.smithy.kotlin:testing:1.4.20 (n) - -jvmE2eTestApiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmE2eTestCompilationApi - API dependencies for 'jvm/e2eTest'. (n) -No dependencies - -jvmE2eTestCompilationCompileOnly - Compile only dependencies for 'jvm/e2eTest'. (n) -No dependencies - -jvmE2eTestCompilationImplementation - Implementation only dependencies for 'jvm/e2eTest'. (n) -No dependencies - -jvmE2eTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/e2eTest'. (n) -No dependencies - -jvmE2eTestCompileClasspath - Compile classpath for 'jvm/e2eTest'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 -| | | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 (*) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -> 5.10.5 (*) -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.slf4j:slf4j-simple:2.0.16 - \--- org.slf4j:slf4j-api:2.0.16 - -jvmE2eTestCompileOnly (n) -No dependencies - -jvmE2eTestCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmE2eTestImplementation (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (n) -+--- project e2e-test-util (n) -\--- org.slf4j:slf4j-simple:2.0.16 (n) - -jvmE2eTestImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmE2eTestIntransitiveDependenciesMetadata -No dependencies - -jvmE2eTestResolvableDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.slf4j:slf4j-simple:2.0.16 -| \--- org.slf4j:slf4j-api:2.0.16 -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.slf4j:slf4j-simple:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.slf4j:slf4j-api:{strictly 2.0.16} -> 2.0.16 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -+--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmE2eTestRuntimeClasspath - Runtime classpath of 'jvm/e2eTest'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:testing:1.4.20 -> project :smithy-kotlin:runtime:testing -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter:5.10.5 -| | +--- org.junit:junit-bom:5.10.5 -| | | +--- org.junit.jupiter:junit-jupiter:5.10.5 (c) -| | | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (c) -| | | +--- org.junit.jupiter:junit-jupiter-engine:5.10.5 (c) -| | | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 (c) -| | | +--- org.junit.platform:junit-platform-launcher:1.10.5 (c) -| | | +--- org.junit.platform:junit-platform-engine:1.10.5 (c) -| | | \--- org.junit.platform:junit-platform-commons:1.10.5 (c) -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.5 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-params:5.10.5 -| | | +--- org.junit:junit-bom:5.10.5 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| | \--- org.junit.jupiter:junit-jupiter-engine:5.10.5 -| | +--- org.junit.platform:junit-platform-engine:1.10.5 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.5 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.5 (*) -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.9.0 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -> 5.10.5 (*) -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -> 1.10.5 -| +--- org.junit.platform:junit-platform-engine:1.10.5 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- project :tests:e2e-test-util -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -| +--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:crt-util -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 -| | | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 -| | | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:protocol:http (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.slf4j:slf4j-simple:2.0.16 - \--- org.slf4j:slf4j-api:2.0.16 - -jvmE2eTestRuntimeOnly (n) -No dependencies - -jvmMainApi (n) -No dependencies - -jvmMainApiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainCompileOnly (n) -No dependencies - -jvmMainCompileOnlyDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainImplementation (n) -No dependencies - -jvmMainImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -\--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) - -jvmMainIntransitiveDependenciesMetadata -No dependencies - -jvmMainResolvableDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -\--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) - -jvmMainRuntimeOnly (n) -No dependencies - -jvmRuntimeClasspath - Runtime classpath of 'jvm/main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) - -jvmRuntimeElements - Elements of runtime for main. (n) -No dependencies - -jvmRuntimeElements-published (n) -No dependencies - -jvmSourcesElements - Source files of main compilation of jvm. (n) -No dependencies - -jvmSourcesElements-published (n) -No dependencies - -jvmTestApi (n) -No dependencies - -jvmTestApiDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestCompilationApi - API dependencies for 'jvm/test'. (n) -+--- project aws-config (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) -\--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) - -jvmTestCompilationCompileOnly - Compile only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompilationImplementation - Implementation only dependencies for 'jvm/test'. (n) -+--- unspecified (n) -+--- project aws-config (n) -+--- project aws-core (n) -+--- project aws-endpoint (n) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT (n) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT (n) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT (n) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT (n) - -jvmTestCompilationRuntimeOnly - Runtime only dependencies for 'jvm/test'. (n) -\--- unspecified (n) - -jvmTestCompileClasspath - Compile classpath for 'jvm/test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestCompileOnly (n) -No dependencies - -jvmTestCompileOnlyDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestImplementation (n) -\--- org.jetbrains.kotlin:kotlin-test-junit5 (n) - -jvmTestImplementationDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| \--- org.jetbrains:annotations:13.0 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestIntransitiveDependenciesMetadata -No dependencies - -jvmTestResolvableDependenciesMetadata -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | \--- org.jetbrains:annotations:13.0 -| \--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-annotations-common:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5:{strictly 2.1.0} -> 2.1.0 (c) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.9.0} -> 1.9.0 (c) -+--- org.jetbrains.kotlinx:atomicfu:{strictly 0.23.1} -> 0.23.1 (c) -+--- org.junit.jupiter:junit-jupiter-api:{strictly 5.10.1} -> 5.10.1 (c) -+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c) -+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.21} -> 1.9.21 (c) -+--- org.opentest4j:opentest4j:{strictly 1.3.0} -> 1.3.0 (c) -+--- org.junit.platform:junit-platform-commons:{strictly 1.10.1} -> 1.10.1 (c) -\--- org.apiguardian:apiguardian-api:{strictly 1.1.2} -> 1.1.2 (c) - -jvmTestRuntimeClasspath - Runtime classpath of 'jvm/test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- org.jetbrains.kotlin:kotlin-test -> 2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- io.ktor:ktor-server-cio:3.1.1 -| | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-server-core:3.1.1 -| | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- com.typesafe:config:1.4.3 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 -| | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http:3.1.1 -| | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-events:3.1.1 -| | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.fusesource.jansi:jansi:2.4.1 -| | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- io.ktor:ktor-network:3.1.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:http-test (*) -| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- project :smithy-kotlin:runtime:serde:serde-cbor -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (c) -+--- org.jetbrains.kotlin:kotlin-test-junit5 -> 2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (c) - -jvmTestRuntimeOnly (n) -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathJvmE2eTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathJvmTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathMetadataMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -metadataApiElements - API elements for main. (n) -No dependencies - -metadataCompilationApi - API dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationCompileOnly - Compile only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationImplementation - Implementation only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompilationRuntimeOnly - Runtime only dependencies for 'metadata/main'. (n) -No dependencies - -metadataCompileClasspath - Compile classpath for 'metadata/main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:runtime-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:smithy-client:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-xml-protocols:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-xml:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:serde:serde-xml -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:telemetry-defaults:1.4.17-SNAPSHOT -> project :smithy-kotlin:runtime:observability:telemetry-defaults - +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -metadataSourcesElements - Source files of main compilation of metadata. (n) -No dependencies - -signatures (n) -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:codegen:allDeps - ------------------------------------------------------------- -Project ':tests:codegen' ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -No dependencies - -apiDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -No dependencies - -compileClasspath - Compile classpath for 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -No dependencies - -implementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -No dependencies - -testImplementationDependenciesMetadata -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - \--- org.jetbrains:annotations:13.0 - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:e2e-test-util:allDeps - ------------------------------------------------------------- -Project ':tests:e2e-test-util' - Test utilities for integration and e2e tests ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 (n) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (n) - -apiDependenciesMetadata -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -compileClasspath - Compile classpath for 'main'. -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -No dependencies - -implementationDependenciesMetadata -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.slf4j:slf4j-api:2.0.16 -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:crt-util -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 -| | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 -| | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:protocol:http (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -No dependencies - -testImplementationDependenciesMetadata -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.slf4j:slf4j-api:2.0.16 -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -+--- aws.smithy.kotlin:http-client-engine-crt:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-crt -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:crt-util -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.1 -| | | \--- aws.sdk.kotlin.crt:aws-crt-kotlin-jvm:0.9.1 -| | | +--- software.amazon.awssdk.crt:aws-crt:0.33.10 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.9.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:protocol:http (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:codegen:checksums:allDeps - ------------------------------------------------------------- -Project ':tests:codegen:checksums' - AWS SDK for Kotlin's checksums codegen test suite ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- project aws-config (n) -+--- project aws-core (n) -\--- project aws-endpoint (n) - -apiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) - -compileClasspath - Compile classpath for 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- project aws-sdk-codegen (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- aws.smithy.kotlin:serde-json:1.4.20 (n) - -implementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:smithy-test:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -\--- aws.smithy.kotlin:http-test:1.4.20 (n) - -testImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:http-test -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.ktor:ktor-server-cio:3.1.1 -| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-server-core:3.1.1 -| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- com.typesafe:config:1.4.3 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 -| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 -| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-events:3.1.1 -| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.fusesource.jansi:jansi:2.4.1 -| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- io.ktor:ktor-network:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- project :smithy-kotlin:runtime:serde:serde-cbor -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:codegen:event-stream:allDeps - ------------------------------------------------------------- -Project ':tests:codegen:event-stream' - AWS SDK for Kotlin's event stream codegen test suite ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- project aws-config (n) -+--- project aws-core (n) -\--- project aws-endpoint (n) - -apiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) - -compileClasspath - Compile classpath for 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- project aws-sdk-codegen (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- aws.smithy.kotlin:serde-json:1.4.20 (n) - -implementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:smithy-test:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -\--- aws.smithy.kotlin:http-test:1.4.20 (n) - -testImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:http-test -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.ktor:ktor-server-cio:3.1.1 -| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-server-core:3.1.1 -| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- com.typesafe:config:1.4.3 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 -| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 -| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-events:3.1.1 -| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.fusesource.jansi:jansi:2.4.1 -| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- io.ktor:ktor-network:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- project :smithy-kotlin:runtime:serde:serde-cbor -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:codegen:rules-engine:allDeps - ------------------------------------------------------------- -Project ':tests:codegen:rules-engine' - AWS SDK for Kotlin's rules engine codegen integration test suite ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- project aws-config (n) -+--- project aws-core (n) -\--- project aws-endpoint (n) - -apiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) - -compileClasspath - Compile classpath for 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- project aws-sdk-codegen (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- aws.smithy.kotlin:serde-json:1.4.20 (n) - -implementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:smithy-test:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -\--- aws.smithy.kotlin:http-test:1.4.20 (n) - -testImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:http-test -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.ktor:ktor-server-cio:3.1.1 -| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-server-core:3.1.1 -| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- com.typesafe:config:1.4.3 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 -| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 -| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-events:3.1.1 -| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.fusesource.jansi:jansi:2.4.1 -| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- io.ktor:ktor-network:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- project :smithy-kotlin:runtime:serde:serde-cbor -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -> Task :tests:codegen:smoke-tests:allDeps - ------------------------------------------------------------- -Project ':tests:codegen:smoke-tests' - AWS SDK for Kotlin's smoke test codegen test suite ------------------------------------------------------------- - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -api - API dependencies for 'main'. (n) -+--- project aws-config (n) -+--- project aws-core (n) -\--- project aws-endpoint (n) - -apiDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -apiElements - API elements for the 'main' feature. (n) -No dependencies - -apiElements-published (n) -No dependencies - -codegen -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -| | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | +--- org.jetbrains:annotations:23.0.0 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- com.squareup.okio:okio:3.9.1 -| \--- com.squareup.okio:okio-jvm:3.9.1 -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -+--- software.amazon.smithy:smithy-cli:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-build:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-diff:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-syntax:1.53.0 -| +--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-utils:1.53.0 -> 1.54.0 -\--- software.amazon.smithy:smithy-model:1.53.0 -> 1.54.0 (*) - -compileClasspath - Compile classpath for 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -compileOnly - Compile only dependencies for 'main'. (n) -No dependencies - -compileOnlyDependenciesMetadata -No dependencies - -default - Configuration for default artifacts. (n) -No dependencies - -implementation - Implementation only dependencies for 'main'. (n) -+--- project aws-sdk-codegen (n) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (n) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 (n) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:http:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth:1.4.20 (n) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 (n) -+--- aws.smithy.kotlin:http-client:1.4.20 (n) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 (n) -+--- aws.smithy.kotlin:identity-api:1.4.20 (n) -+--- aws.smithy.kotlin:runtime-core:1.4.20 (n) -+--- aws.smithy.kotlin:serde:1.4.20 (n) -+--- aws.smithy.kotlin:smithy-client:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 (n) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 (n) -+--- project aws-http (n) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 (n) -\--- aws.smithy.kotlin:serde-json:1.4.20 (n) - -implementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json - +--- project :smithy-kotlin:runtime:serde (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -intransitiveDependenciesMetadata -No dependencies - -kotlinBuildToolsApiClasspath -\--- org.jetbrains.kotlin:kotlin-build-tools-impl:{strictly 2.1.0} -> 2.1.0 - +--- org.jetbrains.kotlin:kotlin-build-tools-api:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - +--- org.jetbrains.kotlin:kotlin-compiler-runner:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-build-common:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-daemon-client:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 (*) - -kotlinCompilerClasspath -\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinCompilerPluginClasspath -No dependencies - -kotlinCompilerPluginClasspathMain - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinCompilerPluginClasspathTest - Kotlin compiler plugins for compilation -\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.1.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 - | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | | \--- org.jetbrains:annotations:13.0 - | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - | | \--- org.jetbrains.kotlin:kotlin-scripting-common:2.1.0 (*) - | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - -kotlinKlibCommonizerClasspath -\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 - | \--- org.jetbrains:annotations:13.0 - \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:2.1.0 - +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) - +--- org.jetbrains.kotlin:kotlin-script-runtime:2.1.0 - +--- org.jetbrains.kotlin:kotlin-reflect:1.6.10 - +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:2.1.0 - +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330 - \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 - -kotlinNativeCompilerPluginClasspath -No dependencies - -kotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -kotlinScriptDefExtensions -No dependencies - -mainSourceElements - List of source directories contained in the Main SourceSet. (n) -No dependencies - -runtimeClasspath - Runtime classpath of 'main'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.9.0 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.0 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -\--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) - -runtimeElements - Runtime elements for the 'main' feature. (n) -No dependencies - -runtimeElements-published (n) -No dependencies - -runtimeOnly - Runtime only dependencies for 'main'. (n) -No dependencies - -smithyBuild -No dependencies - -smithyCli -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testApi - API dependencies for 'test'. (n) -No dependencies - -testApiDependenciesMetadata -No dependencies - -testCompileClasspath - Compile classpath for 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| +--- org.opentest4j:opentest4j:1.3.0 -| +--- org.junit.platform:junit-platform-commons:1.10.1 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- io.ktor:ktor-server-cio:3.1.1 -| \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| +--- org.slf4j:slf4j-api:2.0.16 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| +--- io.ktor:ktor-server-core:3.1.1 -| | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | +--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.typesafe:config:1.4.3 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | +--- io.ktor:ktor-utils:3.1.1 -| | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 -| | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http:3.1.1 -| | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-serialization:3.1.1 -| | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-events:3.1.1 -| | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-http-cio:3.1.1 -| | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- io.ktor:ktor-network:3.1.1 -| | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| +--- io.ktor:ktor-http-cio:3.1.1 (*) -| +--- io.ktor:ktor-websockets:3.1.1 (*) -| +--- io.ktor:ktor-network:3.1.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testCompileOnly - Compile only dependencies for 'test'. (n) -No dependencies - -testCompileOnlyDependenciesMetadata -No dependencies - -testImplementation - Implementation only dependencies for 'test'. (n) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 (n) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 (n) -+--- aws.smithy.kotlin:smithy-test:1.4.20 (n) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 (n) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 (n) -\--- aws.smithy.kotlin:http-test:1.4.20 (n) - -testImplementationDependenciesMetadata -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 -| | | | | \--- org.jetbrains:annotations:13.0 -| | | | \--- org.jetbrains.kotlinx:atomicfu:0.23.1 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.21 -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| \--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:protocol:http (*) -| +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults -| +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- project :aws-runtime:aws-http -| +--- project :aws-runtime:aws-core (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| +--- project :smithy-kotlin:runtime:smithy-client (*) -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| +--- project :smithy-kotlin:runtime:serde (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.0 (*) -| \--- org.jetbrains.kotlinx:atomicfu:0.23.1 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testIntransitiveDependenciesMetadata -No dependencies - -testKotlinScriptDef - Script filename extensions discovery classpath configuration (n) -No dependencies - -testKotlinScriptDefExtensions -No dependencies - -testRuntimeClasspath - Runtime classpath of 'test'. -+--- project :aws-runtime:aws-config -| +--- project :aws-runtime:aws-core -| | +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 -| | | | +--- org.jetbrains:annotations:23.0.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (c) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1 (c) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 -| | | | +--- org.jetbrains:annotations:13.0 -> 23.0.0 -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.0 (c) -| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- com.squareup.okio:okio:3.9.1 -| | | \--- com.squareup.okio:okio-jvm:3.9.1 -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.1.10 (*) -| | +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:auth:identity-api -| | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | +--- project :smithy-kotlin:runtime:observability:telemetry-api -| | | | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | +--- project :smithy-kotlin:runtime:auth:http-auth -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api -| | | | +--- project :smithy-kotlin:runtime:auth:identity-api (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -| +--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -| +--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -| +--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | \--- project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-okhttp -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:observability:telemetry-defaults -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- project :smithy-kotlin:runtime:observability:logging-slf4j2 -| | | +--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | \--- org.slf4j:slf4j-api:2.0.16 -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 -| | | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| | \--- com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14 -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.1 (*) -| | +--- com.squareup.okhttp3:okhttp:5.0.0-alpha.14 (*) -| | +--- com.squareup.okio:okio:3.9.0 -> 3.9.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.1.10 (*) -| +--- project :aws-runtime:aws-http -| | +--- project :aws-runtime:aws-core (*) -| | +--- project :aws-runtime:aws-endpoint -| | | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common -| | | | +--- project :smithy-kotlin:runtime:auth:aws-credentials (*) -| | | | +--- project :smithy-kotlin:runtime:auth:http-auth (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- project :aws-runtime:aws-core (*) -| | +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | | +--- project :smithy-kotlin:runtime:auth:http-auth-api (*) -| | | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json -| | +--- project :smithy-kotlin:runtime:serde -| | | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default -| | +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -| +--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -| +--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -| +--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -| +--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -| +--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -| +--- project :aws-runtime:aws-endpoint (*) -| +--- aws.smithy.kotlin:serde-xml:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-xml -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:serde-form-url:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-form-url -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- aws.smithy.kotlin:aws-xml-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-xml-protocols -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols -| | +--- project :smithy-kotlin:runtime:smithy-client (*) -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- project :smithy-kotlin:runtime:runtime-core (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -| | +--- project :smithy-kotlin:runtime:serde (*) -| | \--- project :smithy-kotlin:runtime:serde:serde-json (*) -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- project :aws-runtime:aws-core (*) -+--- project :aws-runtime:aws-endpoint (*) -+--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- project :codegen:aws-sdk-codegen -| +--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen -| | +--- software.amazon.smithy:smithy-codegen-core:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 -| | | | \--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-build:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-waiters:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 -| | | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-jmespath:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-diff:1.54.0 -| | | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 -| | | +--- software.amazon.smithy:smithy-utils:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-smoke-test-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- org.jsoup:jsoup:1.19.1 -| +--- software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-aws-kotlin-codegen -| | +--- project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-iam-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.54.0 -| | | \--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-test-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-protocol-traits:1.54.0 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- software.amazon.smithy:smithy-aws-endpoints:1.54.0 -| | +--- software.amazon.smithy:smithy-aws-traits:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-diff:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-rules-engine:1.54.0 (*) -| | +--- software.amazon.smithy:smithy-model:1.54.0 (*) -| | \--- software.amazon.smithy:smithy-utils:1.54.0 -| +--- software.amazon.smithy:smithy-aws-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-iam-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-aws-cloudformation-traits:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-protocol-test-traits:1.53.0 -> 1.54.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0 -| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- software.amazon.smithy:smithy-aws-endpoints:1.53.0 -> 1.54.0 (*) -| +--- software.amazon.smithy:smithy-smoke-test-traits:1.53.0 -> 1.54.0 (*) -| \--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- software.amazon.smithy.kotlin:smithy-kotlin-codegen:0.34.20 -> project :smithy-kotlin:codegen:smithy-kotlin-codegen (*) -+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -+--- aws.smithy.kotlin:aws-credentials:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-credentials (*) -+--- aws.smithy.kotlin:aws-protocol-core:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-protocol-core (*) -+--- aws.smithy.kotlin:aws-signing-common:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-common (*) -+--- aws.smithy.kotlin:aws-signing-default:1.4.20 -> project :smithy-kotlin:runtime:auth:aws-signing-default (*) -+--- aws.smithy.kotlin:http:1.4.20 -> project :smithy-kotlin:runtime:protocol:http (*) -+--- aws.smithy.kotlin:http-auth:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth (*) -+--- aws.smithy.kotlin:http-auth-aws:1.4.20 -> project :smithy-kotlin:runtime:auth:http-auth-aws (*) -+--- aws.smithy.kotlin:http-client:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client (*) -+--- aws.smithy.kotlin:http-client-engine-default:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-client-engines:http-client-engine-default (*) -+--- aws.smithy.kotlin:identity-api:1.4.20 -> project :smithy-kotlin:runtime:auth:identity-api (*) -+--- aws.smithy.kotlin:runtime-core:1.4.20 -> project :smithy-kotlin:runtime:runtime-core (*) -+--- aws.smithy.kotlin:serde:1.4.20 -> project :smithy-kotlin:runtime:serde (*) -+--- aws.smithy.kotlin:smithy-client:1.4.20 -> project :smithy-kotlin:runtime:smithy-client (*) -+--- aws.smithy.kotlin:telemetry-api:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- aws.smithy.kotlin:telemetry-defaults:1.4.20 -> project :smithy-kotlin:runtime:observability:telemetry-defaults (*) -+--- aws.smithy.kotlin:aws-event-stream:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-event-stream -| +--- project :smithy-kotlin:runtime:runtime-core (*) -| +--- project :smithy-kotlin:runtime:auth:aws-signing-common (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- project :smithy-kotlin:runtime:observability:telemetry-api (*) -+--- project :aws-runtime:aws-http (*) -+--- aws.smithy.kotlin:aws-json-protocols:1.4.20 -> project :smithy-kotlin:runtime:protocol:aws-json-protocols (*) -+--- aws.smithy.kotlin:serde-json:1.4.20 -> project :smithy-kotlin:runtime:serde:serde-json (*) -+--- org.jetbrains.kotlin:kotlin-test:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| +--- org.junit.jupiter:junit-jupiter-engine:5.10.1 -| | +--- org.junit.platform:junit-platform-engine:1.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | +--- org.junit.jupiter:junit-jupiter-api:5.10.1 -| | | +--- org.opentest4j:opentest4j:1.3.0 -| | | +--- org.junit.platform:junit-platform-commons:1.10.1 (*) -| | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | \--- org.apiguardian:apiguardian-api:1.1.2 -| \--- org.junit.platform:junit-platform-launcher:1.10.1 -| +--- org.junit.platform:junit-platform-engine:1.10.1 (*) -| \--- org.apiguardian:apiguardian-api:1.1.2 -+--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 -| \--- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:1.10.1 -| +--- org.jetbrains:annotations:23.0.0 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -+--- aws.smithy.kotlin:smithy-test:1.4.20 -> project :smithy-kotlin:runtime:smithy-test -| +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- project :smithy-kotlin:runtime:protocol:http-test -| | +--- project :smithy-kotlin:runtime:protocol:http-client (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| | +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (c) -| | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0 (c) -| | | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.8.0 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 -| | | \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.8.0 -| | | +--- org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | +--- io.ktor:ktor-server-cio:3.1.1 -| | | \--- io.ktor:ktor-server-cio-jvm:3.1.1 -| | | +--- org.slf4j:slf4j-api:2.0.16 -| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | +--- io.ktor:ktor-server-core:3.1.1 -| | | | \--- io.ktor:ktor-server-core-jvm:3.1.1 -| | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | +--- com.typesafe:config:1.4.3 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | +--- io.ktor:ktor-utils:3.1.1 -| | | | | \--- io.ktor:ktor-utils-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 -| | | | | | \--- io.ktor:ktor-io-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-core:0.6.0 -| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-core-jvm:0.6.0 -| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-io-bytestring:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlinx:kotlinx-io-bytestring-jvm:0.6.0 -| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.10 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http:3.1.1 -| | | | | \--- io.ktor:ktor-http-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-serialization:3.1.1 -| | | | | \--- io.ktor:ktor-serialization-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-websockets:3.1.1 -| | | | | | \--- io.ktor:ktor-websockets-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-events:3.1.1 -| | | | | \--- io.ktor:ktor-events-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-http-cio:3.1.1 -| | | | | \--- io.ktor:ktor-http-cio-jvm:3.1.1 -| | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | +--- io.ktor:ktor-network:3.1.1 -| | | | | | \--- io.ktor:ktor-network-jvm:3.1.1 -| | | | | | +--- org.slf4j:slf4j-api:2.0.16 -| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | | +--- io.ktor:ktor-utils:3.1.1 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 (*) -| | | | | +--- io.ktor:ktor-http:3.1.1 (*) -| | | | | +--- io.ktor:ktor-io:3.1.1 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-reflect:2.1.10 -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | | | \--- org.fusesource.jansi:jansi:2.4.1 -| | | +--- io.ktor:ktor-http-cio:3.1.1 (*) -| | | +--- io.ktor:ktor-websockets:3.1.1 (*) -| | | +--- io.ktor:ktor-network:3.1.1 (*) -| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 (*) -| | \--- org.jetbrains.kotlin:kotlin-test-junit5:2.1.0 (*) -| +--- project :smithy-kotlin:runtime:serde:serde-xml (*) -| +--- project :smithy-kotlin:runtime:serde:serde-cbor -| | +--- project :smithy-kotlin:runtime:serde (*) -| | +--- project :smithy-kotlin:runtime:protocol:http (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.10 (*) -| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0 -> 1.10.1 (*) -| +--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) -| \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 -> 1.8.0 (*) -+--- aws.smithy.kotlin:http-test:1.4.20 -> project :smithy-kotlin:runtime:protocol:http-test (*) -\--- org.jetbrains.kotlin:kotlin-test:2.1.0 (*) - -testRuntimeOnly - Runtime only dependencies for 'test'. (n) -No dependencies - -(c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree. -(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation. - -(n) - A dependency or dependency configuration that cannot be resolved. - -A web-based, searchable dependency report is available by adding the --scan option. - -[Incubating] Problems report is available at: file:///Users/aoperez/Documents/kotlinSdkWork/sdkDevelopment2/aws-sdk-kotlin/build/reports/problems/problems-report.html - -Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. - -You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. - -For more on this, please refer to https://docs.gradle.org/8.12.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. - -BUILD SUCCESSFUL in 5s -90 actionable tasks: 24 executed, 66 up-to-date From eaba3c3f9d03772c23917053ac5f5de0bf854041 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Thu, 17 Jul 2025 16:40:50 -0400 Subject: [PATCH 11/14] misc: remove version catalog JAR task --- bom/build.gradle.kts | 7 ------- build.gradle.kts | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/bom/build.gradle.kts b/bom/build.gradle.kts index d22f6968624..63dc048fc5a 100644 --- a/bom/build.gradle.kts +++ b/bom/build.gradle.kts @@ -114,13 +114,6 @@ publishing { artifactId = "version-catalog" description = "Provides a version catalog" from(components["versionCatalog"]) - - /* - Creates a placeholder JAR for version catalog publishing - The `version-catalog` plugin doesn't generate one because it isn't needed but JReleaser requires a jar - https://docs.gradle.org/current/userguide/version_catalogs.html#sec:version-catalog-plugin - */ - artifact(tasks["versionCatalogJar"]) } } } diff --git a/build.gradle.kts b/build.gradle.kts index f24bc36a2f3..f4ac1d943e5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,8 +2,8 @@ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ -import aws.sdk.kotlin.gradle.dsl.configureLinting import aws.sdk.kotlin.gradle.dsl.configureJReleaser +import aws.sdk.kotlin.gradle.dsl.configureLinting import aws.sdk.kotlin.gradle.util.typedProp buildscript { @@ -17,7 +17,7 @@ buildscript { Enforce jackson to a version supported both by dokka and jreleaser: https://github.com/Kotlin/dokka/issues/3472#issuecomment-1929712374 https://github.com/Kotlin/dokka/issues/3194#issuecomment-1929382630 - */ + */ classpath(enforcedPlatform("com.fasterxml.jackson:jackson-bom:2.15.3")) } } From c346ebe993d663ff5a0e54ba0cfddabe2baf22e9 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Fri, 18 Jul 2025 15:27:36 -0400 Subject: [PATCH 12/14] trigger CI From a433f240b8dd317ef6d1c7a8a08ee17ce98a0bab Mon Sep 17 00:00:00 2001 From: 0marperez Date: Thu, 24 Jul 2025 13:33:46 -0400 Subject: [PATCH 13/14] version bump repo tools --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6dde48f4058..261bb2592cc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ ksp-version = "2.2.0-2.0.2" # Keep in sync with kotlin-version dokka-version = "2.0.0" -aws-kotlin-repo-tools-version = "0.4.33" +aws-kotlin-repo-tools-version = "0.4.34" # libs coroutines-version = "1.10.2" From 9615ab65c1ec81663a7192af18ddc47e772ea4f3 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Thu, 24 Jul 2025 18:05:34 -0400 Subject: [PATCH 14/14] trigger CI