Jump to content
We've recently updated our Privacy Statement, available here ×

Integrate Jasper REST Client in Maven


florian.johannssen

Recommended Posts

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

Link to comment
Share on other sites

  • 3 weeks later...
  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

 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

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...