我试图使用Maven27版和AEM6.4.8.4版构建一个AEM项目。我想要生成两种语言的项目,英语和Ukrainian,但在原型生成后,项目不能正确生成。我对两种语言执行了以下命令:
mvn -B archetype:generate \
-D archetypeGroupId=com.adobe.aem \
-D archetypeArtifactId=aem-project-archetype \
-D archetypeVersion=27 \
-D appTitle="My Multilanguage project" \
-D appId="my-project" \
-D artifactId="my-project" \
-D groupId="com.my.project" \
-D frontendModule="react" \
-D aemVersion="6.4.8.4" \
-D language=en,uk \
-D includeExamples=y \
-D includeErrorHandler=y如何用两种语言生成项目?
发布于 2021-09-08 08:09:29
关于code of AEM archetye,我不认为多语言的推出是可能的。在语言上没有循环,参数本身也不会被任何特定的分隔符分割,所以我认为你需要在以后修改这个设置。
https://stackoverflow.com/questions/69098617
复制相似问题