AEM 6.0 product dependencies POM ? | Community
Skip to main content
Level 2
October 16, 2015
Solved

AEM 6.0 product dependencies POM ?

  • October 16, 2015
  • 2 replies
  • 1373 views

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.html#How-To 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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Ove_Lindström

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 replies

Ove_LindströmAccepted solution
Level 6
October 16, 2015

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>

 

 

Level 2
October 16, 2015

Thanks Ove, exactly what I was looking for.