bundle dependencies not resolved | Community
Skip to main content
sreenu539
Level 7
July 18, 2023
Solved

bundle dependencies not resolved

  • July 18, 2023
  • 4 replies
  • 1057 views

I have added following dependencies to an aem 6.5.13 applicaiton.

 

<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency>

bundle is going into "installed" status with above depencies not resolving on system/console/bundle


com.fasterxml.jackson.core,version=[2.15.0,3) can not resolved

 

Thanks,

Sri

 

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 Sudheer_Sundalam

@sreenu539 ,

I would try couple of things here

1) Make sure I have uber-jar dependency specified in the main pom.xl file matching the service pack installed. In your case, it should be 

<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.5.13</version> <scope>provided</scope> </dependency>

2) Try lowering the the version of jackson dependencies to 2.13.0 in the main pom.xml dependency declaration and add <scope>provided</scope>

3) Mine is 6.5.15 and I have jackson-* bundles in active mode with version 2.13.0.

 

If 2.13.0 version doesn't work as well, try lowering the version until the bundles state changes to active.

 

Hope this helps!

 

 

4 replies

BrianKasingli
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
July 18, 2023

Make sure your UberJar or CloudSDK is set with the proper version referenced to what has been installed in your AEM development environment. 

Kiran_Vedantam
Community Advisor
Community Advisor
July 18, 2023

Hi @sreenu539 

 

Can you please confirm these dependencies are added in both core and main pom.

 

Thanks,

Kiran Vedantam

Sudheer_Sundalam
Community Advisor
Sudheer_SundalamCommunity AdvisorAccepted solution
Community Advisor
July 18, 2023

@sreenu539 ,

I would try couple of things here

1) Make sure I have uber-jar dependency specified in the main pom.xl file matching the service pack installed. In your case, it should be 

<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.5.13</version> <scope>provided</scope> </dependency>

2) Try lowering the the version of jackson dependencies to 2.13.0 in the main pom.xml dependency declaration and add <scope>provided</scope>

3) Mine is 6.5.15 and I have jackson-* bundles in active mode with version 2.13.0.

 

If 2.13.0 version doesn't work as well, try lowering the version until the bundles state changes to active.

 

Hope this helps!

 

 

Himanshu_Jain
Community Advisor
Community Advisor
July 19, 2023
Himanshu Jain