Skip to content

Commit c35f0d0

Browse files
chore: fix aws sdk deps
1 parent 9dda3a4 commit c35f0d0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ dependencies {
3232
implementation("aws.smithy.kotlin:http-client-engine-okhttp")
3333
}
3434

35+
java {
36+
consistentResolution { useCompileClasspathVersions() }
37+
}
38+
3539
gradlePlugin {
3640
website = "https://github.com/cloudshiftinc/codeartifact-gradle-plugin"
3741
vcsUrl = "https://github.com/cloudshiftinc/codeartifact-gradle-plugin"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description=CodeArtifact settings plugin for Gradle
33
kotlin.code.style=official
44

55
group=io.cloudshiftdev.codeartifact
6-
version=2.1.5
6+
version=2.1.6
77

88
org.gradle.jvmargs=-Dfile.encoding\=UTF-8
99
org.gradle.vfs.watch=true

src/main/kotlin/io/cloudshiftdev/gradle/codeartifact/service/CodeArtifactService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ internal class DefaultCodeArtifactService : CodeArtifactService {
9292
logger.lifecycle(
9393
"Uploading CodeArtifact generic artifact asset '${asset.name}' (${genericPackage.namespace}/${genericPackage.name}/${genericPackage.version}) (size: ${asset.content.length()} to ${endpoint.url}"
9494
)
95-
// workaround for https://github.com/awslabs/aws-sdk-kotlin/issues/1217
95+
9696
codeArtifact.publishPackageVersion {
9797
domain = endpoint.domain
9898
domainOwner = endpoint.domainOwner

0 commit comments

Comments
 (0)