I am trying to integrate Asset Share Commons into an existing AEM maven project. The build and deployment to a local AEM SDK as well as in the Cloud are successful - the features work fine in AEM local SDK. In the cloud, I am able to open the Asset Share Commons Site but, the "download", "add to cart", and, "searching" etc features are not working - looks like it was not installed properly. Am I missing anything crucial?
I am adding it in the pom.xml file as follows which downloads the artifacts from the Maven Repo:
<!-- Asset Share Commons as EMBED -->
<embedded>
<groupId>com.adobe.aem.commons</groupId>
<artifactId>assetshare.ui.apps</artifactId>
<type>zip</type>
<target>/apps/application/install</target>
</embedded>
<embedded>
<groupId>com.adobe.aem.commons</groupId>
<artifactId>assetshare.ui.content</artifactId>
<type>zip</type>
<target>/apps/content/install</target>
</embedded>
<!-- Asset Share Commons as Dependnecy -->
<dependency>
<groupId>com.adobe.aem.commons</groupId>
<artifactId>assetshare.ui.apps</artifactId>
<version>1.9.6</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.adobe.aem.commons</groupId>
<artifactId>assetshare.ui.content</artifactId>
<version>1.9.6</version>
<type>zip</type>
</dependency>