Adding third party dependencies in maven
I am using Microsoft Graph api and would like to know how to add that dependency in maven. I have tried with below entries but not working as expected.
Added below entry in dependencies
<dependency>
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>3.2.0</version>
</dependency>
And added embed dependency entry in profiles as below...
<Embed-Dependency>microsoft-graph</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
No compilation issues. It's throwing dependency errors when I deploy it to aem6.5. Looks like it's not resolving the recursive dependencies.
Any help on this is greatly appreciated..