Hello Jasper friends,
I am using the Jasper REST Client: https://github.com/Jaspersoft/jrs-rest-java-client
I want to integrate this lib into my maven pom.xml as dependency. When I put this code into my pom, the following Error-Code will be printed in my Eclipse IDE: Missing artifact com.jaspersoft:jrs-rest-java-client:jar:6.1.4
The POM.xml :
---------------------------------------------------------------------------
<project ...
<parent> ... </parent>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
<name>...</name>
<dependencies>
<dependency>
<groupId>com.jaspersoft</groupId>
<artifactId>jrs-rest-java-client</artifactId>
<version>6.1.4</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jaspersoft-clients-snapshots</id>
<name>Jaspersoft clients snapshots</name>
</repository>
</repositories>
</project>
---------------------------------------------------------------------------
Does anyone know what I am doing wrong.
Thanks for any help.
Best Regrads Florian
Hi Fiona,
You need the first repository from the below to get it working.
<repositories>
<repository>
<id>jrs-rest-java-client</id>
<name>Jaspersoft clients releases</name>
<url>http://jaspersoft.artifactoryonline.com/jaspersoft/jaspersoft-clients-re...
</repository>
<repository>
<id>jrs-ce-releases</id>
<name>JasperReports Server CE releases repository</name>
<url>http://jaspersoft.artifactoryonline.com/jaspersoft/jrs-ce-releases/</url>
</repository>
</repositories>
Regards,
A
- Log in or register to post comments
add comment
0 Answers:
No answers yet