Maven Dependency is not getting downloaded
Hi Team,
I have created a simple maven project which queries AEM 6.4 repository and sends the mail with query results in excel attachment. I am using Apache POI Api to create excel. To add the POI jar, I used depfinder(/system/console/depfinder) and got the below dependency details.
<dependency>
<artifactId>com.adobe.granite.poi</artifactId>
<version>2.0.24</version>
<groupId>com.adobe.granite</groupId>
</dependency>
I added the same in POM. But the build is failing with below error message.
Could not find artifact com.adobe.granite:com.adobe.granite.poi:jar:2.0.24 adobe (https://repo.adobe.com/nexus/content/groups/public/) -> [Help 1]
Can anyone let me know what is the suitable way to handle this scenario ? I have alternative way where in I can specify the dependency like below in my POM.
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.0.0</version>
</dependency>
But I want to know how to make the above depfinder suggested dependency to work ?
Regards,
/S