Apache POI fr.opensagres.xdocxreport is not supporting in AEM 6.5? | Community
Skip to main content
Level 3
February 27, 2025
Solved

Apache POI fr.opensagres.xdocxreport is not supporting in AEM 6.5?

  • February 27, 2025
  • 2 replies
  • 705 views

<dependency>
<groupId>fr.opensagres.xdocreport</groupId>
<artifactId>fr.opensagres.poi.xwpf.converter.core</artifactId>
<version>2.1.0</version>
</dependency>

 

I am trying to add this dependency but it is unable to fetch from the adobe repo. Any idea, I know that opensagres is an external API which works with POI. If POI is compatible then why this one is not?

 

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 Tethich

Hi @sateeshkreddy 

 

It does exist in Maven repository: https://repo.maven.apache.org/maven2/fr/opensagres/xdocreport/

 

Try adding this repository definition in your main pom.xml file. I have it in the adobe-public profile:

<repository> <id>maven-central</id> <name>Maven Central</name> <url>https://repo.maven.apache.org/maven2/</url> <layout>default</layout> </repository>

And I run my Maven build command using -Padobe-public in addition.

 

2 replies

anupampat
Community Advisor
Community Advisor
February 27, 2025

Hi @sateeshkreddy ,

It could be because its part of a different repository, which is not configured in your project

https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.poi.xwpf.converter.core/2.1.0 

It does say its part of the central repo as well, it would be worth a try to check if configuring the alfresco-public repo can solve the issue.

 

Or can you also share the error which you get while building the project ?

 

Regards,

Anupam Patra

Tethich
Community Advisor
TethichCommunity AdvisorAccepted solution
Community Advisor
February 27, 2025

Hi @sateeshkreddy 

 

It does exist in Maven repository: https://repo.maven.apache.org/maven2/fr/opensagres/xdocreport/

 

Try adding this repository definition in your main pom.xml file. I have it in the adobe-public profile:

<repository> <id>maven-central</id> <name>Maven Central</name> <url>https://repo.maven.apache.org/maven2/</url> <layout>default</layout> </repository>

And I run my Maven build command using -Padobe-public in addition.