Skip to content

Commit 422865d

Browse files
fix: relocate more things.
1 parent 0401a16 commit 422865d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tempest-dynamodb-local/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ tasks.shadowJar {
5757
}
5858

5959
// Relocate packages to avoid conflicts.
60+
// TODO(tsr): we need to explicitly relocate these two "packages" (really just jar entries) because Shadow v8.x fails
61+
// to move non-class files with `relocationPrefix`. With Shadow 9.x, we will no longer need this.
62+
// See https://cash.slack.com/archives/C01G7QB4ANQ/p1746641202744229?thread_ts=1746050279.119679&cid=C01G7QB4ANQ
63+
listOf(
64+
"org.eclipse.jetty",
65+
"org.partiql",
66+
).forEach { relocate(it, "app.cash.tempest.testing.dynamodb.local.shaded.${it}") }
6067
isEnableRelocation = true
6168
relocationPrefix = "app.cash.tempest.testing.dynamodb.local.shaded"
6269

0 commit comments

Comments
 (0)