Skip to content
Open
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
3 changes: 2 additions & 1 deletion bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ group = "aws.sdk.kotlin"
version = sdkVersion
description = "Provides a BOM"

val evaluateAfter = listOf(":services", ":aws-runtime", ":tests", ":codegen")
val evaluateAfter = listOf(":services", ":aws-runtime", ":tests", ":codegen", ":hll")
evaluateAfter.forEach { evaluationDependsOn(it) }

fun createBomConstraintsAndVersionCatalog() {
Expand All @@ -43,6 +43,7 @@ fun createBomConstraintsAndVersionCatalog() {
val prefix = when {
subproject.path.contains(":services") -> "services-"
subproject.path.contains(":aws-runtime") -> "runtime-"
subproject.path.contains(":hll") && !subproject.name.startsWith("hll-") -> "hll-"
else -> ""
}
val alias = prefix + artifactId(target)
Expand Down
Loading