AEM6 Health Reports and Maintenance | Community
Skip to main content
October 16, 2015
Solved

AEM6 Health Reports and Maintenance

  • October 16, 2015
  • 1 reply
  • 668 views

Hi, 

I am trying to create a custom maintenance activity in AEM6.

I need to do an import of com.adobe.granite.maintenance.MaintenanceConstants. And Dependency required for this is given below.

 <dependency>
                <groupId>com.adobe.granite</groupId>
                <artifactId>com.adobe.granite.maintenance.core</artifactId>
                <version>1.1.18</version>
                <scope>provided</scope>
</dependency> 

But this jar file is not available in repo.adobe or maven repositories.

Please help.

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 gopalKa

You just need 

  <dependency>
                <groupId>com.adobe.aem</groupId>
                <artifactId>aem-api</artifactId>
                <version>6.0.0.1</version>
                <scope>provided</scope>
            </dependency>

1 reply

gopalKaAdobe EmployeeAccepted solution
Adobe Employee
October 16, 2015

You just need 

  <dependency>
                <groupId>com.adobe.aem</groupId>
                <artifactId>aem-api</artifactId>
                <version>6.0.0.1</version>
                <scope>provided</scope>
            </dependency>