Skip to content

Commit fc3837b

Browse files
authored
misc: prepare codegen packages for internal import (#1266)
1 parent ce7c62d commit fc3837b

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

.brazil.json

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,40 @@
1111
"org.slf4j:slf4j-api:2.*": "Maven-org-slf4j_slf4j-api-2.x",
1212
"aws.sdk.kotlin.crt:aws-crt-kotlin:0.9.*": "AwsCrtKotlin-0.9.x",
1313
"aws.sdk.kotlin.crt:aws-crt-kotlin:0.8.*": "AwsCrtKotlin-0.8.x",
14-
"com.squareup.okhttp3:okhttp:4.*": "OkHttp3-4.x"
14+
"com.squareup.okhttp3:okhttp:4.*": "OkHttp3-4.x",
15+
16+
"software.amazon.smithy:smithy-aws-traits:1.*": "Maven-software-amazon-smithy_smithy-aws-traits-1.x",
17+
"software.amazon.smithy:smithy-aws-iam-traits:1.*": "Maven-software-amazon-smithy_smithy-aws-iam-traits-1.x",
18+
"software.amazon.smithy:smithy-aws-cloudformation-traits:1.*": "Maven-software-amazon-smithy_smithy-aws-cloudformation-traits-1.x",
19+
"software.amazon.smithy:smithy-protocol-test-traits:1.*": "Maven-software-amazon-smithy_smithy-protocol-test-traits-1.x",
20+
"software.amazon.smithy:smithy-protocol-traits:1.*": "Maven-software-amazon-smithy_smithy-protocol-traits-1.x",
21+
"software.amazon.smithy:smithy-aws-endpoints:1.*": "Maven-software-amazon-smithy_smithy-aws-endpoints-1.x",
22+
"software.amazon.smithy:smithy-codegen-core:1.*": "Maven-software-amazon-smithy_smithy-codegen-core-1.x",
23+
"software.amazon.smithy:smithy-waiters:1.*": "Maven-software-amazon-smithy_smithy-waiters-1.x",
24+
"software.amazon.smithy:smithy-rules-engine:1.*": "Maven-software-amazon-smithy_smithy-rules-engine-1.x",
25+
"software.amazon.smithy:smithy-smoke-test-traits:1.*": "Maven-software-amazon-smithy_smithy-smoke-test-traits-1.x",
26+
"org.jsoup:jsoup:1.19.*": "Maven-jsoup-1.19.x"
1527
},
1628
"packageHandlingRules": {
1729
"versioning": {
1830
"defaultVersionLayout": "{MAJOR}.0.x",
1931
"overrides": {
20-
"software.amazon.smithy.kotlin:smithy-kotlin-codegen": "{MAJOR}.{MINOR}.x",
21-
"software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils": "{MAJOR}.{MINOR}.x"
32+
"software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen": "{MAJOR}.x",
33+
"software.amazon.smithy.kotlin:smithy-kotlin-codegen": "{MAJOR}.x"
2234
}
2335
},
2436
"rename": {
25-
"software.amazon.smithy.kotlin:smithy-kotlin-codegen": "SmithyKotlinCodegen",
26-
"software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils": "SmithyKotlinCodegenTestUtils"
37+
"software.amazon.smithy.kotlin:smithy-aws-kotlin-codegen": "AwsSmithyAwsKotlinCodegen",
38+
"software.amazon.smithy.kotlin:smithy-kotlin-codegen": "AwsSmithyKotlinCodegen"
2739
},
2840
"ignore": [
2941
"aws.smithy.kotlin:http-test",
3042
"aws.smithy.kotlin:smithy-test",
3143
"aws.smithy.kotlin:telemetry-provider-micrometer",
3244
"aws.smithy.kotlin:testing",
3345
"aws.smithy.kotlin:bom",
34-
"aws.smithy.kotlin:version-catalog"
46+
"aws.smithy.kotlin:version-catalog",
47+
"software.amazon.smithy.kotlin:smithy-kotlin-codegen-testutils"
3548
],
3649
"resolvesConflictDependencies": {
3750
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.*": [

codegen/smithy-aws-kotlin-codegen/build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,11 @@ plugins {
1313
}
1414

1515
val codegenVersion: String by project
16-
description = "Codegen support for AWS protocols"
16+
description = "Smithy codegen support for AWS protocols"
1717
group = "software.amazon.smithy.kotlin"
1818
version = codegenVersion
1919

20-
val sdkVersion: String by project
21-
2220
dependencies {
23-
24-
implementation(libs.kotlin.stdlib.jdk8)
2521
api(project(":codegen:smithy-kotlin-codegen"))
2622

2723
api(libs.smithy.aws.traits)

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ kotlinx-serialization-version = "1.7.3"
3030
docker-java-version = "3.4.0"
3131
ktor-version = "3.1.1"
3232
kaml-version = "0.55.0"
33-
jsoup-version = "1.18.1"
33+
jsoup-version = "1.19.1"
3434

3535
[libraries]
3636
aws-kotlin-repo-tools-build-support = { module="aws.sdk.kotlin.gradle:build-support", version.ref = "aws-kotlin-repo-tools-version" }

0 commit comments

Comments
 (0)