Skip to content

Commit a45edd6

Browse files
committed
Fix dynamodb mapper build
1 parent 9394d75 commit a45edd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ val moveGenSrc by tasks.registering {
100100
}
101101
}
102102

103-
listOf("jvmSourcesJar", "metadataSourcesJar", "jvmProcessResources").forEach {
103+
listOf("jvmSourcesJar", "metadataSourcesJar", "jvmProcessResources", "sourcesJar").forEach {
104104
tasks.named(it) {
105105
dependsOn(moveGenSrc)
106106
}

hll/dynamodb-mapper/dynamodb-mapper/common/src/aws/sdk/kotlin/hll/dynamodbmapper/internal/DynamoDbMapperImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ internal class MapperConfigBuilderImpl : DynamoDbMapper.Config.Builder {
4545
/**
4646
* An interceptor that emits the DynamoDB Mapper business metric
4747
*/
48-
private object BusinessMetricInterceptor : HttpInterceptor {
48+
internal object BusinessMetricInterceptor : HttpInterceptor {
4949
override suspend fun modifyBeforeSerialization(context: RequestInterceptorContext<Any>): Any {
5050
context.executionContext.emitBusinessMetric(AwsBusinessMetric.DDB_MAPPER)
5151
return context.request

0 commit comments

Comments
 (0)