Loading aws/sdk/build.gradle.kts +7 −7 Original line number Diff line number Diff line Loading @@ -126,7 +126,7 @@ fun generateSmithyBuild(services: AwsServices): String { """ } task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" inputs.property("servicelist", awsServices.services.toString()) inputs.property("eventStreamAllowList", eventStreamAllowList) Loading @@ -138,7 +138,7 @@ task("generateSmithyBuild") { } } task("generateIndexMd") { tasks.register("generateIndexMd") { inputs.property("servicelist", awsServices.services.toString()) val indexMd = outputDir.resolve("index.md") outputs.file(indexMd) Loading @@ -147,7 +147,7 @@ task("generateIndexMd") { } } task("relocateServices") { tasks.register("relocateServices") { description = "relocate AWS services to their final destination" doLast { awsServices.services.forEach { Loading @@ -172,7 +172,7 @@ task("relocateServices") { outputs.dir(sdkOutputDir) } task("relocateExamples") { tasks.register("relocateExamples") { description = "relocate the examples folder & rewrite path dependencies" doLast { if (awsServices.examples.isNotEmpty()) { Loading @@ -193,7 +193,7 @@ task("relocateExamples") { outputs.dir(outputDir) } task<ExecRustBuildTool>("fixExampleManifests") { tasks.register<ExecRustBuildTool>("fixExampleManifests") { description = "Adds dependency path and corrects version number of examples after relocation" enabled = awsServices.examples.isNotEmpty() Loading Loading @@ -272,7 +272,7 @@ fun generateCargoWorkspace(services: AwsServices): String { """.trimMargin() } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { outputDir.mkdirs() Loading Loading @@ -346,7 +346,7 @@ tasks.register<ExecRustBuildTool>("generateVersionManifest") { ) } task("finalizeSdk") { tasks.register("finalizeSdk") { dependsOn("assemble") outputs.upToDateWhen { false } finalizedBy( Loading build.gradle.kts +1 −1 Original line number Diff line number Diff line Loading @@ -62,7 +62,7 @@ tasks.register<JavaExec>("ktlintFormat") { } @Suppress("UnstableApiUsage") task<JacocoMerge>("jacocoMerge") { tasks.register<JacocoMerge>("jacocoMerge") { group = LifecycleBasePlugin.VERIFICATION_GROUP description = "Merge the JaCoCo data files from all subprojects into one" afterEvaluate { Loading codegen-server-test/build.gradle.kts +2 −2 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ val allCodegenTests = listOf( CodegenTest("com.aws.example#PokemonService", "pokemon_service_sdk") ) task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" doFirst { projectDir.resolve("smithy-build.json") Loading @@ -58,7 +58,7 @@ task("generateSmithyBuild") { } } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { buildDir.resolve("$workingDirUnderBuildDir/Cargo.toml") Loading codegen-test/build.gradle.kts +2 −2 Original line number Diff line number Diff line Loading @@ -88,7 +88,7 @@ val allCodegenTests = listOf( CodegenTest("com.aws.example#PokemonService", "pokemon_service_client") ) task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" doFirst { projectDir.resolve("smithy-build.json") Loading @@ -102,7 +102,7 @@ task("generateSmithyBuild") { } } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { buildDir.resolve("$workingDirUnderBuildDir/Cargo.toml") Loading rust-runtime/build.gradle.kts +1 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,7 @@ tasks.register<Copy>("copyRuntimeCrates") { into(runtimeOutputDir) } task("fixRuntimeCrateVersions") { tasks.register("fixRuntimeCrateVersions") { dependsOn("copyRuntimeCrates") doLast { CrateSet.ENTIRE_SMITHY_RUNTIME.forEach { moduleName -> Loading Loading
aws/sdk/build.gradle.kts +7 −7 Original line number Diff line number Diff line Loading @@ -126,7 +126,7 @@ fun generateSmithyBuild(services: AwsServices): String { """ } task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" inputs.property("servicelist", awsServices.services.toString()) inputs.property("eventStreamAllowList", eventStreamAllowList) Loading @@ -138,7 +138,7 @@ task("generateSmithyBuild") { } } task("generateIndexMd") { tasks.register("generateIndexMd") { inputs.property("servicelist", awsServices.services.toString()) val indexMd = outputDir.resolve("index.md") outputs.file(indexMd) Loading @@ -147,7 +147,7 @@ task("generateIndexMd") { } } task("relocateServices") { tasks.register("relocateServices") { description = "relocate AWS services to their final destination" doLast { awsServices.services.forEach { Loading @@ -172,7 +172,7 @@ task("relocateServices") { outputs.dir(sdkOutputDir) } task("relocateExamples") { tasks.register("relocateExamples") { description = "relocate the examples folder & rewrite path dependencies" doLast { if (awsServices.examples.isNotEmpty()) { Loading @@ -193,7 +193,7 @@ task("relocateExamples") { outputs.dir(outputDir) } task<ExecRustBuildTool>("fixExampleManifests") { tasks.register<ExecRustBuildTool>("fixExampleManifests") { description = "Adds dependency path and corrects version number of examples after relocation" enabled = awsServices.examples.isNotEmpty() Loading Loading @@ -272,7 +272,7 @@ fun generateCargoWorkspace(services: AwsServices): String { """.trimMargin() } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { outputDir.mkdirs() Loading Loading @@ -346,7 +346,7 @@ tasks.register<ExecRustBuildTool>("generateVersionManifest") { ) } task("finalizeSdk") { tasks.register("finalizeSdk") { dependsOn("assemble") outputs.upToDateWhen { false } finalizedBy( Loading
build.gradle.kts +1 −1 Original line number Diff line number Diff line Loading @@ -62,7 +62,7 @@ tasks.register<JavaExec>("ktlintFormat") { } @Suppress("UnstableApiUsage") task<JacocoMerge>("jacocoMerge") { tasks.register<JacocoMerge>("jacocoMerge") { group = LifecycleBasePlugin.VERIFICATION_GROUP description = "Merge the JaCoCo data files from all subprojects into one" afterEvaluate { Loading
codegen-server-test/build.gradle.kts +2 −2 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ val allCodegenTests = listOf( CodegenTest("com.aws.example#PokemonService", "pokemon_service_sdk") ) task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" doFirst { projectDir.resolve("smithy-build.json") Loading @@ -58,7 +58,7 @@ task("generateSmithyBuild") { } } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { buildDir.resolve("$workingDirUnderBuildDir/Cargo.toml") Loading
codegen-test/build.gradle.kts +2 −2 Original line number Diff line number Diff line Loading @@ -88,7 +88,7 @@ val allCodegenTests = listOf( CodegenTest("com.aws.example#PokemonService", "pokemon_service_client") ) task("generateSmithyBuild") { tasks.register("generateSmithyBuild") { description = "generate smithy-build.json" doFirst { projectDir.resolve("smithy-build.json") Loading @@ -102,7 +102,7 @@ task("generateSmithyBuild") { } } task("generateCargoWorkspace") { tasks.register("generateCargoWorkspace") { description = "generate Cargo.toml workspace file" doFirst { buildDir.resolve("$workingDirUnderBuildDir/Cargo.toml") Loading
rust-runtime/build.gradle.kts +1 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,7 @@ tasks.register<Copy>("copyRuntimeCrates") { into(runtimeOutputDir) } task("fixRuntimeCrateVersions") { tasks.register("fixRuntimeCrateVersions") { dependsOn("copyRuntimeCrates") doLast { CrateSet.ENTIRE_SMITHY_RUNTIME.forEach { moduleName -> Loading