Hi All,
As part of JFrog issues, we are trying to update core component version from 2.7.0 to 2.19.0 but we are unable to find the core.wcm.components.examples-2.19.0.zip in the below location
https://github.com/adobe/aem-core-wcm-components/releases/tag/core.wcm.components.reactor-2.19.0
due to this builds are failing.
Environment - AEM 6.5.10
Could you please let us know examples-2.19.0.zip location or what is the replacement for this.
Thanks,
Ram
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
It is available at maven repo at https://repo1.maven.org/maven2/com/adobe/cq/core.wcm.components.all/
Hi @R_R_P,
I believe you are trying to upgrade core component version through build, in that case please navigate parent pom.xml as below
Also here is the direct link for zip https://github.com/adobe/aem-core-wcm-components/releases/download/core.wcm.components.reactor-2.19....
Hope that helps you!
Regards,
Santosh
Hi Santosh,
Yes, we are trying to upgrade core component version through build only(Updated in pom file with 2.19.0). During build getting message like "Could not find artifact com.adobe.cq:core.wcm.components.examples:zip:2.19.0"
We don't have examples-2.19.0.zip in the below location
We have the below files only
but 2.7.0 version having the same zip file
@R_R_P I see you are referring 2 different artifacts. Core Components artifact and Core Component Examples artifacts are different. Below dependencies work fine. Please check.
<!-- Core Components --> <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.core</artifactId> <version>${core.wcm.components.version}</version> </dependency> <!-- Core Components Examples--> <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.examples.ui.apps</artifactId> <type>zip</type> <version>${core.wcm.components.version}</version> </dependency> <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.examples.ui.content</artifactId> <type>zip</type> <version>${core.wcm.components.version}</version> </dependency> <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.examples.ui.config</artifactId> <type>zip</type> <version>${core.wcm.components.version}</version> </dependency>
Hi,
It is available at maven repo at https://repo1.maven.org/maven2/com/adobe/cq/core.wcm.components.all/