Hi! Was anyone successful to setup local DynamoDB ...
# spring
a
Hi! Was anyone successful to setup local DynamoDB for testing with this manual? 🙂 https://www.baeldung.com/dynamodb-local-integration-tests Preferably with
Gradle
Ok, if someone needs, Gradle Kotlin DSL configuration:
Copy code
val copyDependencies by tasks.creating(Copy::class) {
	from(configurations.testRuntimeClasspath.get()) {
		include("*.dll")
		include("*.dylib")
		include("*.so")
	}
	into("build/libs")
}
Copy code
val test by tasks.getting(Test::class) {
    useJUnitPlatform { }

	dependsOn(copyDependencies)

	systemProperty("sqlite4java.library.path", "build/libs")
}
that works