Expand my Community achievements bar.

Enhance your AEM Assets & Boost Your Development: [AEM Gems | June 19, 2024] Improving the Developer Experience with New APIs and Events
SOLVED

AEM Project Creation command using Latest archetype(46) for Use the AEM add-on Forms Features

Avatar

Level 5

Hi Team

 

We are working purely Adobe AEM Forms (Osgi Forms (addon-forms) Project , We Planning use if any features related Adobe add-on Forms project creating using latest archetype (46) . Please share the Command (windows) to create the AEM Project for Forms .

 

I had tried following not able created project without any manual fixes applied to successfully build projects .
mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=46 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion="6.5.17"

 

Getting below Error:

varaande_0-1698713775737.png

As per below reference  AEM On-premises version 6.5.17 recommended Archetype 46 :

https://github.com/adobe/aem-project-archetype/blob/develop/VERSIONS.md

 

& Not able to create using archetype version 44 , some projects (ex :dispatcher module (_ams,cloud) Missing when i run mvn package and manually fix some errors ui.apps build  successfully (module and main pom.xml need to fixed sync )


mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=44 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion="6.5.17"

 

 

varaande_1-1698714066283.png

 

varaande_2-1698714158422.pngvaraande_3-1698714346036.png

 

Please share the Working Command to Create AEM Project to On-premises using version 6.5.17 or 6.5.18  with build success 

Regards

Vara

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @varaande 

 

The following command should work

 

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=44 -D appTitle="WKND Sites Project" -D appId="wknd" -D groupId="com.adobe.aem.guides" -D artifactId="aem-guides-wknd" -D package="com.adobe.aem.guides.wknd" -D version="0.0.1-SNAPSHOT" -D aemVersion="6.5.17" -D includeDispatcherConfig="y"

 

aanchalsikka_0-1698718865062.png

 

 

46 is throwing error, like you mentioned. The following documentation suggests 44 https://github.com/adobe/aem-project-archetype


Aanchal Sikka

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hello @varaande 

 

The following command should work

 

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=44 -D appTitle="WKND Sites Project" -D appId="wknd" -D groupId="com.adobe.aem.guides" -D artifactId="aem-guides-wknd" -D package="com.adobe.aem.guides.wknd" -D version="0.0.1-SNAPSHOT" -D aemVersion="6.5.17" -D includeDispatcherConfig="y"

 

aanchalsikka_0-1698718865062.png

 

 

46 is throwing error, like you mentioned. The following documentation suggests 44 https://github.com/adobe/aem-project-archetype


Aanchal Sikka

Avatar

Administrator

@varaande Did you find the suggestions from Aanchal helpful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.



Kautuk Sahni