Skip to content

Commit 5373fb2

Browse files
authored
misc: DynamoDB Mapper's metadataSourcesJar dependsOn moveGenSrc (#1563)
1 parent a406f97 commit 5373fb2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

hll/dynamodb-mapper/dynamodb-mapper/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ if (project.NATIVE_ENABLED) {
112112
}
113113
}
114114

115-
tasks.named("jvmSourcesJar") {
116-
dependsOn(moveGenSrc)
115+
listOf("jvmSourcesJar", "metadataSourcesJar").forEach {
116+
tasks.named(it) {
117+
dependsOn(moveGenSrc)
118+
}
117119
}
118120

119121
tasks.withType<KotlinCompilationTask<*>> {

0 commit comments

Comments
 (0)