Integrate Jasper REST Client in Maven

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

florian.johannssen's picture
Joined: Sep 25 2014 - 8:25am
Last seen: 5 years 6 months ago
 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>
        </repository>
        <repository>
            <id>jrs-ce-releases</id>
            <name>JasperReports Server CE releases repository</name>
        </repository>
        </repositories>
 
Regards,
A
aruna.chalasani - 7 years 1 month ago

0 Answers:

No answers yet
Feedback
randomness