We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0401a16 commit 422865dCopy full SHA for 422865d
tempest-dynamodb-local/build.gradle.kts
@@ -57,6 +57,13 @@ tasks.shadowJar {
57
}
58
59
// 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}") }
67
isEnableRelocation = true
68
relocationPrefix = "app.cash.tempest.testing.dynamodb.local.shaded"
69
0 commit comments