Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

core.wcm.components.examples-2.19.0.zip location

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
4 Replies

Avatar

Community Advisor

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 belowScreen Shot 2022-09-12 at 2.58.05 PM.png

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

Avatar

Level 2

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

https://github.com/adobe/aem-core-wcm-components/releases/download/core.wcm.components.reactor-2.19....

We have the below files only

R_R_P_2-1663010119445.png

 

R_R_P_0-1663009859545.png

but 2.7.0 version having the same zip file

R_R_P_1-1663010040433.png

 

 

Avatar

Community Advisor

@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>

 

Avatar

Correct answer by
Community Advisor

Hi,

It is available at maven repo at  https://repo1.maven.org/maven2/com/adobe/cq/core.wcm.components.all/ 



Arun Patidar