Hi All,
I'm trying to build & deploy AEM project archetype 39 according to here https://github.com/adobe/aem-project-archetype - project deployed successfully on local instance but when I check My Site bundle is in Installed state and 2 errors as below
What might be the wrong here?
Solved! Go to Solution.
Views
Replies
Total Likes
@shoib_I Well, that is expected! My analysis as below,
Please run below command as per your AEM instance version 6.5.14.
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=39\
-D appTitle="My Site" \
-D appId="mysite" \
-D groupId="com.mysite" \
-D aemVersion="6.5.14"
This should solve your problem.
Hi @shoib_I ,
Could you please tell us what is the exact version of AEM you are using and what command you have been used to generate project?
Also, have you installed latest Service Pack?
Regards,
Santosh
Views
Replies
Total Likes
@SantoshSai I have used below command to generate project
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=39\
-D appTitle="My Site" \
-D appId="mysite" \
-D groupId="com.mysite"
as archetype 39 supports AEM 6.5.7.0+ I'm using AEM 6.5.0 on top of it yes Installed Service Pack 6.5.14 - but still the same issue.
Views
Replies
Total Likes
@shoib_I Well, that is expected! My analysis as below,
Please run below command as per your AEM instance version 6.5.14.
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=39\
-D appTitle="My Site" \
-D appId="mysite" \
-D groupId="com.mysite" \
-D aemVersion="6.5.14"
This should solve your problem.
Thanks @SantoshSai that's amazing! It works!