<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.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
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.
Hi @sateeshkreddy ,
It could be because its part of a different repository, which is not configured in your project
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
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.