Hello everyone, Would someone happen to know how t...
# announcements
c
Hello everyone, Would someone happen to know how to include dependencies with BOM support on a project using the kotlin-multiplatform plugin? I have a MPP that tries to store data on a database and for my java target I want to add a dependency to the aws dynamodb sdk. The instructions suggest to add a dependency to the BOM and then the DynamoDB SDK. I ended up adding it like this:
kotlin {
jvm("jvm") {
dependencies {
implementation platform("software.amazon.awssdk:bom:2.5.29")
implementation "software.amazon.awssdk:dynamodb"
}
}
And I can see the jar in my gradle cache but it is not found in my project. I assume it was not added to the buildpath. Does someone have suggestion onto how to proceed.