Skip to content

Commit 6a90894

Browse files
bladata1990claude
andcommitted
Restore shadowJar asset-import include filter in RAB build
The dependencies { include(project(":samples:packages:asset-import")) } filter was accidentally removed from the shadowJar block, causing the fat jar to bundle all transitive SDK dependencies instead of just asset-import. This conflicted with the base container image jars and caused ClassNotFoundException: com.atlan.pkg.rab.Importer at runtime. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: bladata1990 <balakrishnan.r@atlan.com>
1 parent e0a1de3 commit 6a90894

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

samples/packages/relational-assets-builder/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ tasks {
2828
archiveClassifier.set("")
2929
archiveBaseName.set(jarName)
3030
destinationDirectory.set(file(jarPath))
31+
dependencies {
32+
include(project(":samples:packages:asset-import"))
33+
}
3134
mergeServiceFiles()
3235
dependsOn(":package-toolkit:runtime:genPklConnectors")
3336
}

0 commit comments

Comments
 (0)