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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/jreleaser.yml

This file was deleted.

9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
import aws.sdk.kotlin.gradle.dsl.configureJReleaser
import aws.sdk.kotlin.gradle.dsl.configureLinting
import aws.sdk.kotlin.gradle.publishing.SonatypeCentralPortalPublishTask
import aws.sdk.kotlin.gradle.publishing.SonatypeCentralPortalWaitForPublicationTask
import aws.sdk.kotlin.gradle.util.typedProp
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

Expand Down Expand Up @@ -62,7 +63,8 @@ if (project.typedProp<Boolean>("kotlinWarningsAsErrors") == true) {
}

// Publishing
configureJReleaser()
tasks.register<SonatypeCentralPortalPublishTask>("publishToCentralPortal") { }
tasks.register<SonatypeCentralPortalWaitForPublicationTask>("waitForCentralPortalPublication") { }

// Code Style
val lintPaths = listOf(
Expand All @@ -71,6 +73,3 @@ val lintPaths = listOf(
)

configureLinting(lintPaths)

// https://github.com/jreleaser/jreleaser/issues/1492
tasks.register("clean") {}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
kotlin-version = "2.2.0"

aws-kotlin-repo-tools-version = "0.4.57"
aws-kotlin-repo-tools-version = "0.4.65"

# libs
crt-java-version = "0.38.1"
Expand Down
Loading