Here is the answer.
If you used the AEM Project Archetype to setup your project, make sure to adjust the property in the root Maven pom.xml like below.
I have changed property in root pom.xml, I have updated version of AEM Analyser to latest version.
Old version: [pom.xml]
<properties>
<aemanalyser.version>0.9.2</aemanalyser.version>
</properties>
<build>
<plugins> </plugins>
<pluginManagement>
<!-- AEM Analyser Plugin -->
<plugin>
<groupId>com.adobe.aem</groupId>
<artifactId>aemanalyser-maven-plugin</artifactId>
<version>${aemanalyser.version}</version>
<extensions>true</extensions>
</plugin>
</pluginManagement>
</build>
Latest Version: [pom.xml]
<properties>
<aemanalyser.version>1.3.0</aemanalyser.version> <!-- Make sure to use the latest release -->
</properties>
<build>
<plugins> </plugins>
<pluginManagement>
<!-- AEM Analyser Plugin -->
<plugin>
<groupId>com.adobe.aem</groupId>
<artifactId>aemanalyser-maven-plugin</artifactId>
<version>${aemanalyser.version}</version>
<extensions>true</extensions>
</plugin>
</pluginManagement>
</build>
Check latest version of AEM Analyser Maven Plugin https://mvnrepository.com/artifact/com.adobe.aem/aemanalyser-maven-plugin