Expand my Community achievements bar.

SOLVED

Unable to see options under Modernizer Tools Menu

Avatar

Level 2

I have installed Modernizer Tool on local environment and I am using AEM as a Cloud.

The modernizer menu shows up in the tools menu but page is blank when you select the AEM-Modernize tool, refer the attached screenshot.

 

Modernize.png

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi,


Followed the below documentation,

https://opensource.adobe.com/aem-modernize-tools/pages/plan-operate/set-up.html

Note: I am using version 2.1.0

 

Added below dependency in POM.xml under all folder in the project

<dependency>
    <groupId>com.adobe.aem</groupId>
    <artifactId>aem-modernize-tools.all</artifactId>
    <version>2.1.0</version>
    <type>zip</type>
</dependency>

 

and embedded below in Filevault Package Maven plugin

<embedded>
    <groupId>com.adobe.aem</groupId>
    <artifactId>aem-modernize-tools.all</artifactId>
    <type>zip</type>
    <target>/apps/PROJECT-packages/application/install</target>
</embedded>

 

Added below dependency in core POM.xml 

<dependency>
	<groupId>com.adobe.aem</groupId>
	<artifactId>aem-modernize-tools.core</artifactId>
	<version>2.1.0</version>
	<scope>provided</scope>
</dependency>

 

Also, I had to re-install all the Modernizer packages through package manager.

With this, I was able to view all the modernizer options in Tools menu

 

Modernizer.png

 

 

View solution in original post

3 Replies

Avatar

Community Advisor

Hello @Avdhesh-Pandey 

 

It appears that the Modernizer tool is not supported for AEMaaCS 

aanchalsikka_0-1701439732965.png

https://github.com/adobe/aem-modernize-tools 


Aanchal Sikka

Avatar

Level 2

Hi @aanchal-sikka,

 

Thank you for checking, however, based of the official documentation for AEM as Cloud Service, it seems that we can use Modernizer in AEMaaCS. 

Avatar

Correct answer by
Level 2

Hi,


Followed the below documentation,

https://opensource.adobe.com/aem-modernize-tools/pages/plan-operate/set-up.html

Note: I am using version 2.1.0

 

Added below dependency in POM.xml under all folder in the project

<dependency>
    <groupId>com.adobe.aem</groupId>
    <artifactId>aem-modernize-tools.all</artifactId>
    <version>2.1.0</version>
    <type>zip</type>
</dependency>

 

and embedded below in Filevault Package Maven plugin

<embedded>
    <groupId>com.adobe.aem</groupId>
    <artifactId>aem-modernize-tools.all</artifactId>
    <type>zip</type>
    <target>/apps/PROJECT-packages/application/install</target>
</embedded>

 

Added below dependency in core POM.xml 

<dependency>
	<groupId>com.adobe.aem</groupId>
	<artifactId>aem-modernize-tools.core</artifactId>
	<version>2.1.0</version>
	<scope>provided</scope>
</dependency>

 

Also, I had to re-install all the Modernizer packages through package manager.

With this, I was able to view all the modernizer options in Tools menu

 

Modernizer.png