Thank you for your reply!
I've tried your code but it returns the same error. Also all my servlets are in satisfied state and i have no idea how to turn them into active state.
Why does my new AEM servlet stay in satisfied stat... - Adobe Experience League Community - 453517
I've seen this post ...
Sorry for interupting you again.
After several changes finally the build successed.
What i've done is i deleted the in-active aws-java-sdk-osgi jar file and add the description below into the core/pom.xml file.
-conditionalpackage: com.amazonaws.aws-java-sdk-osgi.*
-includeresource: @aws-java-sdk...
Sorry for the late reply.
I've made the change to core/pom.xml and still got the same error.
I've read this tutorial Embed Third party dependency using bnd-maven-plugin (myaemlearnings.blogspot.com) but cannot find any description about export package.
Do i have to add the aws-java-sdk-osgi jar ...
Thank you for your reply.
I'm using bnd-maven-plugin but i still have no idea where to add the export package.
Below is how i made the change.
I'm sorry for this newbie question but could you please tell me the right place to add the export package description.
pom.xml
<!-- BND Maven Plugin -->...
Hi everyone,
I'm new to aem and is still learning based on the training project adobe provided.
I try to create a new servlet so i can upload file to AWS s3 bucket, but it returns build error and i don't know how to solve it so really prefer some help.
build error message:
Here is what i add...
Hi!
I can't find that jar file so i add this dependecy
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-osgi --><dependency><groupId>com.amazonaws</groupId><artifactId>aws-java-sdk-osgi</artifactId><version>1.12.305</version></dependency>
and it returns this error
Could not r...
Hi!Thank you for your response!
The bundle is in active state and it is a path servlet.
code below
package com.adobe.training.core.servlets;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.jcr.api.SlingRepositor...
Hi everyone,
I'm trying to import aws java sdk into AEM so i can upload files to AWS S3.
My pom file is like this
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aws-java-sdk</artifactId>
<version>1.11.714_1</version>
</dependency>
...