Trying to build & deploy asset share commons 3.8.4 with below dependencies for AEM 6.5 with Sp 17
Here is the reference URL how I included for maven compile (as its 6.5 instance and not cloud, omitted the the cloud classifier. )
https://opensource.adobe.com/asset-share-commons/pages/development/deploying/
Issue: Upon deploy the bundle asset share commons -core (com.adobe.aem.commons.assetshare.core) isnt active
below are the dependencies errored out:
com.day.cq.dam.commons.util, version=[1.62,2] -- cannot be reoslved
org.apache.commons.lang3,version=[3.13.4] -- cannot be resolved
on checking on depfinder noticed the versions I have as below
commons-lang3 - 3.12.0
cq-dam-commons - 5.12.158
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi,
Can you confirm your AEM WCM components version is what is required? https://opensource.adobe.com/asset-share-commons/pages/getting-started/set-up/
Hope this helps
Views
Replies
Total Likes
@EstebanBustamante thank you for the reply! Yes I confirm AEM WCM components version is what is required.
We are currently using version - 2.23.4
Views
Replies
Total Likes
Able to resolve one dependency
org.apache.commons.lang3,version=[3.13.4] -- cannot be resolved
here is the dependency added all/pom.xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.13.0</version>
</dependency>
Please let me know, if you have any suggestions for the other dependecy
com.day.cq.dam.commons.util, version=[1.62,2] -- cannot be reoslved
tried similar to lang-3 but aint fixed.
Views
Replies
Total Likes
Hi Sunil, have you been able to fix your rest of the issues? I am facing a similar issue for 3.8.9 version of Asset Share commons.
Views
Replies
Total Likes
No Sonal, ended up using ASC 3.5
Views
Replies
Total Likes
Hi Sunil, How did you manage to get the ASC 3.5 version? When I check their repository, this branch is not available for checkout and neither does the download zip work. I tried cloning using web URL : https://github.com/adobe/asset-share-commons/tree/asset-share-commons-3.5.0
Views
Replies
Total Likes
ok, so I finally got this. I went to https://github.com/adobe/asset-share-commons/releases and went to the Release 3.5.0 section. There is a Assets section here that has the source code as .tar.gz. Extracted it using 7zip and got the code and built it on my local. I still had issue com.adobe.cq.wcm.core.components.models.form,version=[14.3,15) -- Cannot be resolved
The version given in the pom.xml was 2.17.14 and AEM was showing 2.3.2. So had to manually add that version to AEM. Downloaded it from https://github.com/adobe/aem-core-wcm-components/releases/download/core.wcm.components.reactor-2.17.... and added to AEM using package manager. Then activated the ASC bundle which was in installed state. The ASC was finally up and I could get the assets on the pages as expected.
Views
Replies
Total Likes