How to resolve this dependency "com.adobe.fmdita.api.maps.MapUtilities; | Community
Skip to main content
djohn98390536
New Participant
January 20, 2024
Solved

How to resolve this dependency "com.adobe.fmdita.api.maps.MapUtilities;

  • January 20, 2024
  • 3 replies
  • 1603 views

Working in AEM as cloud SDK .As mentioned in document need to include this bundle in your code to use these APIs. but this version is not available in adobe nexus repo while including in pom.xml as dependency .

Bundle details:

  • Group ID: com.adobe.fmdita

  • Artifact ID: api

  • Version: 3.2

  • Package: com.adobe.fmdita.api.maps

code sample

 

List<Node> mapDependents = MapUtilities.getAllDependencies(ditamapNode);
List<AssetObject> listOfDitaObject = new ArrayList<>();

 

compilation error like in abode repo this bundle is not available in public repo .How to resolve this plz help if anyone already faced this kind of issue.

 

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 lukasz-m

Hi @djohn98390536,

Please have a look into this chapter of official documentation:

It describes multiple ways how to handle dependency including manual installation in your local maven.

You can also add below dependency, which includes com.adobe.fmdita.api.maps.MapUtilities and other classes from DITA api.

 

<dependency> <groupId>com.adobe.aem</groupId> <artifactId>aem-guides-sdk-api</artifactId> <version>2022.5</version> </dependency>

 

Above dependency is also mention in the Adobe documentation I have pointed out at the beginning of this message.

3 replies

lukasz-m
lukasz-mAccepted solution
New Participant
January 20, 2024

Hi @djohn98390536,

Please have a look into this chapter of official documentation:

It describes multiple ways how to handle dependency including manual installation in your local maven.

You can also add below dependency, which includes com.adobe.fmdita.api.maps.MapUtilities and other classes from DITA api.

 

<dependency> <groupId>com.adobe.aem</groupId> <artifactId>aem-guides-sdk-api</artifactId> <version>2022.5</version> </dependency>

 

Above dependency is also mention in the Adobe documentation I have pointed out at the beginning of this message.

djohn98390536
New Participant
January 21, 2024

Hi @lukasz-m 

Thanks a lot .Its working as expected .

Shashi_Mulugu
New Participant
January 20, 2024