wknd tutorial fails to build because of Project Analyser: Parsing error in repoinit | Community
Skip to main content
New Participant
March 14, 2021
Solved

wknd tutorial fails to build because of Project Analyser: Parsing error in repoinit

  • March 14, 2021
  • 3 replies
  • 5988 views

How to reproduce:

1. follow the oficial tutorial here: https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-wknd-tutorial-develop/project-setup.html?lang=en#prerequisites

 

2. use the archtype to create the project:

 

 mvn -B archetype:generate \                 

    -D archetypeGroupId=com.adobe.aem \

    -D archetypeArtifactId=aem-project-archetype \

    -D archetypeVersion=25 \

    -D appTitle="WKND Sites Project" \

    -D appId="wknd" \

    -D groupId="com.adobe.aem.guides.wknd" \

    -D artifactId="aem-guides-wknd" \

    -D version="0.0.1-SNAPSHOT" \

    -D aemVersion="cloud"

 

3. Edit the pom.xml to fix the node error for M1 Macs

 

<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.0</version>

 

4. try to build:

   cd aem-guides-wknd

   mvn clean install -PautoInstallSinglePackage

 

5. observe errors.  Note, I can build and deploy the wknd project from the zip file of the source, I just cant built a project from mnv archtype.

 

[INFO] - Executing Repoinit Check [repoinit]...

[INFO] - Executing Requirements Capabilities check [requirements-capabilities]...

[INFO] Analyzing feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-author.prod:0.0.1-SNAPSHOT' finished : 0 warnings, 1 errors.

[ERROR] repoinit: Parsing error in repoinit from extension : Encountered "" at line 15, column 37.

Was expecting one of:

    

[ERROR] Analyser detected errors on feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-author.prod:0.0.1-SNAPSHOT'. See log output for error messages.

[INFO] Starting analyzing feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-publish.prod:0.0.1-SNAPSHOT'...

[INFO] - Executing Api Regions analyser task that checks that listed packages are actually exported [api-regions]...

[INFO] - Executing Api Regions check order analyser task [api-regions-check-order]...

[INFO] - Executing Bundle Import/Export Check [api-regions-exportsimports]...

[INFO] - Executing Api Regions cross-feature duplicate export task [api-regions-crossfeature-dups]...

[INFO] - Executing Configuration API analyser task [configuration-api]...

[INFO] - Executing Bundle Natice Code Check [bundle-nativecode]...

[INFO] - Executing Bundle Initial Content Check [bundle-content]...

[INFO] - Executing Bundle Resources Check [bundle-resources]...

[INFO] - Executing Repoinit Check [repoinit]...

[INFO] - Executing Requirements Capabilities check [requirements-capabilities]...

[INFO] Analyzing feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-publish.prod:0.0.1-SNAPSHOT' finished : 0 warnings, 1 errors.

[ERROR] repoinit: Parsing error in repoinit from extension : Encountered "" at line 15, column 37.

Was expecting one of:

    

[ERROR] Analyser detected errors on feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-publish.prod:0.0.1-SNAPSHOT'. See log output for error messages.

[INFO] Starting analyzing feature 'com.adobe.aem.guides.wknd:aem-guides-wknd.analyse:slingosgifeature:aggregated-publish.stage:0.0.1-SNAPSHOT'...

[INFO] - Executing Api Regions analyser task that checks that listed packages are actually exported [api-regions]...

[INFO] aem-guides-wknd .................................... SUCCESS [  0.106 s]

[INFO] WKND Sites Project - Core .......................... SUCCESS [  3.056 s]

[INFO] WKND Sites Project - UI Frontend ................... SUCCESS [ 46.939 s]

[INFO] WKND Sites Project - Repository Structure Package .. SUCCESS [  0.476 s]

[INFO] WKND Sites Project - UI apps ....................... SUCCESS [  2.196 s]

[INFO] WKND Sites Project - UI content .................... SUCCESS [  1.313 s]

[INFO] WKND Sites Project - UI config ..................... SUCCESS [  0.048 s]

[INFO] WKND Sites Project - All ........................... SUCCESS [  0.145 s]

[INFO] WKND Sites Project - Integration Tests ............. SUCCESS [  4.055 s]

[INFO] WKND Sites Project - Dispatcher .................... SUCCESS [  0.029 s]

[INFO] WKND Sites Project - UI Tests ...................... SUCCESS [  0.114 s]

[INFO] WKND Sites Project - Project Analyser .............. FAILURE [ 20.309 s]

[INFO] ------------------------------------------------------------------------

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time:  01:19 min

[INFO] Finished at: 2021-03-14T17:41:07+01:00

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal com.adobe.aem:aemanalyser-maven-plugin:0.0.18:analyse (default-analyse) on project aem-guides-wknd.analyse: One or more feature analyser(s) detected feature error(s), please read the plugin log for more details -> [Help 1]

[ERROR] 

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 bosschaert

Hi,

 

Please select the latest aem analyser version as follows in the top-level pom.xml:

<aemanalyser.version>0.9.2</aemanalyser.version>

 

3 replies

New Participant
September 10, 2021

for anyone still having this issue, please use the latest version of aemanalyser: 1.1.4

New Participant
November 19, 2021

I set the updated version but still didn't work.

New Participant
November 19, 2021

I haven't use the wknd tutorial project for awhile. So maybe there is a new version of aemanalyser??

 

DuttAbhishek
New Participant
September 7, 2021

I am also following the same link but I got this error 

Can you tell what could be the reason 

AEM version - 6.5 

Archtype = 26 

Employee
September 7, 2021

You sure you did not select the cloud option? This error should be a warning instead and occur when

 

a) building for the cloud

b) log osgi configs are present that define log level below info / or pattern

 

We removed b in the upcoming version. It will be forbidden to override existing OOTB loggers though.

In any case , the error should be a warning.

 

Are you on the latest aemanalyser version? We fixed some bugs and are now on 1.1.8.

 

bosschaertAccepted solution
Employee
March 15, 2021

Hi,

 

Please select the latest aem analyser version as follows in the top-level pom.xml:

<aemanalyser.version>0.9.2</aemanalyser.version>

 

kautuk_sahni
Employee
March 15, 2021
@bosschaert, thank you for sharing the answer with AEM community. AEM community great SMEs like you. Keep the wonderful work going.
Kautuk Sahni