Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

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

Avatar

Level 2

<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.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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.

 

View solution in original post

2 Replies

Avatar

Community Advisor

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.... 

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

Avatar

Correct answer by
Community Advisor

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.