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

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

Mark Solution

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

해결됨

AEM 6.0 product dependencies POM ?

Avatar

Level 2

Hi,

I can't find the equivalent of the cq-quickstart-product-dependencies POM for AEM 6.0 (see http://dev.day.com/docs/en/cq/aem-how-tos/development/how-to-build-aem-projects-using-apache-maven.h... Add Dependencies for background).

Is there such a POM anywhere under different maven co-ordinates, or for now do we simply have to resolve all dependencies ourselves via the console & add to our top level POM ?

Thanks.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 6

There is only one dependency now and no need to import the pom to the dependency. (I could say a lot about that...)

Just add this as a dependency on the root pom or in all poms that needs it.

<dependency>
    <groupid>com.adobe.aem</groupid>
    <artifactid>aem-api</artifactid>
    <version>6.0.0.1</version>
    <scope>provided</scope>
</dependency>

 

 

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Level 6

There is only one dependency now and no need to import the pom to the dependency. (I could say a lot about that...)

Just add this as a dependency on the root pom or in all poms that needs it.

<dependency>
    <groupid>com.adobe.aem</groupid>
    <artifactid>aem-api</artifactid>
    <version>6.0.0.1</version>
    <scope>provided</scope>
</dependency>

 

 

Avatar

Level 2

Thanks Ove, exactly what I was looking for.