Closed dgadelha closed 7 months ago
Hi there and thanks for this lib! The recent v9 doesn't seem to be working:
Error: Unable to access jarfile ../lib/dynamodb_local_2024-04-16/DynamoDBLocal.jar
As far as I could see from the source code, it is referencing the jarfile from ../lib/, but the build code is creating build/node and build/es2019.
../lib/
build/node
build/es2019
The createSpawn command is not considering now that there is a new subfolder inside build/, resulting in java trying to access build/lib/dynamodb_local_2024-04-16 instead of lib/dynamodb_local_2024-04-16
createSpawn
build/
build/lib/dynamodb_local_2024-04-16
lib/dynamodb_local_2024-04-16
As a workaround, I'm using v8 here
Thanks a lot for reporting this. Version 9.1.1 should contain the fix.
Hi there and thanks for this lib! The recent v9 doesn't seem to be working:
As far as I could see from the source code, it is referencing the jarfile from
../lib/
, but the build code is creatingbuild/node
andbuild/es2019
.The
createSpawn
command is not considering now that there is a new subfolder insidebuild/
, resulting in java trying to accessbuild/lib/dynamodb_local_2024-04-16
instead oflib/dynamodb_local_2024-04-16
As a workaround, I'm using v8 here