Integrating DynamoDB with AEM 6.5 SPA
Hello Everyone,
I was trying to integrate this dynamoDB with AEM 6.5 SPA , added this dependency in core/pom.xml and also in parent pom.xml
dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
<version>1.12.773</version>
</dependency>
=====================================================================
after running the mvn build ,able to see the below dependency in core/pom.xml included with the above one
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.12.773</version>
<scope>compile</scope>
</dependency>
Getting this error in my project bundle in bundle console
====================================
com.amazonaws.auth -- Cannot be resolved
com.amazonaws.client.builder -- Cannot be resolved
com.amazonaws.services.dynamodbv2 -- Cannot be resolved
com.amazonaws.services.dynamodbv2.document -- Cannot be resolved
and my bundle is change to installed state now.
Thanks in advance!
also @smacdonald2008 please help on with idea or suggestions to resolve.
as I have seen links(https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aws-package-cannot-be-resolved-by-felix-console/m-p/310940) but some links provided here are not working now, this is similar one you resolved the same. but this is in AEM 6.5 SPA
thanks in advance!!