AWS Java SDK cannot be resolved
Hello I am trying to integrate AWS SDK in my project. But the problem is after the deploy the bundle cannot be resolved.
In the project pom.xml
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.12.392</version>
</dependency>
In the core pom.xml
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
</dependency>
In the all pom.xml
<embedded>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<target>/apps/my-project-vendor-packages/application/install</target>
</embedded>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<type>jar</type>
</dependency>
After successfully deploying with this setup I got this error,

To resolve I found similar kinds of problems in communities. But none of them helped me or I missed something.
Reference: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aws-package-cannot-be-resolved-by-felix-console/m-p/310940
Method 2:
I also tried to deploy the "aws-java-sdk-1.12.392.jar" directly by OSGI. And then I get this error.

What should I do? How can I resolve this problem?
