Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 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
13 changes: 13 additions & 0 deletions .github/workflows/jreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# TODO: Delete this workflow when we migrate off JReleaser

name: JReleaser check
on:
pull_request:

jobs:
jreleaser-check:
permissions: {}
runs-on: ubuntu-latest
steps:
- name: JReleaser check
uses: awslabs/aws-kotlin-repo-tools/.github/actions/jreleaser@main
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ buildscript {
*/
classpath(enforcedPlatform("com.fasterxml.jackson:jackson-bom:2.15.3"))
}

configurations.classpath {
resolutionStrategy {
/*
Version bumping the SDK to 1.5.x in repo tools broke our buildscript classpath:
java.lang.NoSuchMethodError: 'void kotlinx.coroutines.CancellableContinuation.resume(java.lang.Object, kotlin.jvm.functions.Function3)

FIXME: Figure out what broke our buildscipt classpath, this is a temporary fix to address a release issue!
*/
force("com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14")
}
}
}

plugins {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
kotlin-version = "2.2.0"
dokka-version = "2.0.0"

aws-kotlin-repo-tools-version = "0.4.41"
aws-kotlin-repo-tools-version = "0.4.44"

# libs
coroutines-version = "1.10.2"
Expand Down
Loading