내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

AEM as a cloud service project setup

Avatar

Level 2

Hello, can you please explain what is the best way to create a local AEM project for AEM as a cloud service?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee Advisor

hi @sue1976 ,
Please refer to this link: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetyp...

There is detailed explanation to create project using the latest archetype. 

Try this using command line:

mvn -B archetype:generate \
-D archetypeGroupId=com.adobe.aem \
-D archetypeArtifactId=aem-project-archetype \
-D archetypeVersion=35 \
-D appTitle="My Site" \
-D appId="mysite" \
-D groupId="com.mysite" \
-D aemVersion="cloud" \

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Employee Advisor

hi @sue1976 ,
Please refer to this link: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetyp...

There is detailed explanation to create project using the latest archetype. 

Try this using command line:

mvn -B archetype:generate \
-D archetypeGroupId=com.adobe.aem \
-D archetypeArtifactId=aem-project-archetype \
-D archetypeVersion=35 \
-D appTitle="My Site" \
-D appId="mysite" \
-D groupId="com.mysite" \
-D aemVersion="cloud" \

Avatar

Level 2

Thanks @Anish-Sinha for quick response