Is JasperReports Maven broken?

I am trying to add a dependency to JasperReports to my project (Tried SBT and Maven) but it seems that one dependency is broken. I am using the latest version 6.1.0 from the maven repo (also tested with previous and same issues).

I also added the Jasper repository since the libs lib should be grabbed from it.

But I keep getting these errors: [info] Solution org.codehaus.castor # castor-xml; 1.3.3 ... [warn] when loading the module descriptor: http://repo1.maven.org/maven2/org/codehaus/castor/castor-xml/1.3.3/castor-xml-1.3.3.pom : invalid sha1: expected = c9d4075aabdeb9f81ba16455c5dadf2c1f687cb1 computed = a0bc9174f01de7be6d5bdcec580e6a3b999674ec (108ms) [warn] module not found: org.codehaus-xml; # castor 1.3.3

: [info] Solution org.olap4j # olap4j; 0.9.7.309-JS-3 ... [warn] module not found: org.olap4j # olap4j; 0.9.7.309-JS-3

[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  ::          UNRESOLVED DEPENDENCIES         ::
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::
[warn]  :: org.codehaus.castor#castor-xml;1.3.3: not found
[warn]  :: org.olap4j#olap4j;0.9.7.309-JS-3: not found
[warn]  ::::::::::::::::::::::::::::::::::::::::::::::

      

Is there any other repository hosting this data?

UPDATE: I managed to find the olap dependency: http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/

There are still problems with castor.

+3


source to share


1 answer


There is a post in the jaspersoft community:

http://community.jaspersoft.com/questions/826431/failure-find-orgolap4jolap4jjar097309-js-3

EDIT:



The recommendation is to add additional maven repositories to your configuration so that missing artifacts can be detected.

As said, it should be http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts to get olap4j.

I had no problem with the castor-xml artifact in maven-central: http://search.maven.org/#artifactdetails|org.codehaus.castor|castor-xml|1.3.3|jar

+3


source







All Articles