core.wcm.components.examples-2.19.0.zip location | Community
Skip to main content
Level 2
September 12, 2022
Solved

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

  • September 12, 2022
  • 2 replies
  • 2032 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by arunpatidar

Hi,

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

2 replies

SantoshSai
Community Advisor
Community Advisor
September 12, 2022

Hi @rrp7890,

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.0/core.wcm.components.all-2.19.0.zip

Hope that helps you!

Regards,

Santosh

Santosh Sai
rrp7890Author
Level 2
September 12, 2022

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.0/core.wcm.components.all-2.19.0.zip

We have the below files only

 

but 2.7.0 version having the same zip file

 

 

Sachin_Arora_
Community Advisor
Community Advisor
September 13, 2022

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

 

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
September 13, 2022
Arun Patidar