Skip to content

Commit 5b5acb4

Browse files
authored
fix: ddb local stop location (#1483)
1 parent bb08ba4 commit 5b5acb4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ val startDdbLocal = task<DynamoDbLocalInstance>("startDdbLocal") {
178178

179179
tasks.withType<Test> {
180180
dependsOn(startDdbLocal)
181-
}
182-
183-
gradle.buildFinished {
184-
startDdbLocal.stop()
181+
doLast {
182+
startDdbLocal.stop()
183+
}
185184
}

0 commit comments

Comments
 (0)