What are the dependecy need to be added for jasperreport 5.0.1?

后端 未结 2 802
轮回少年
轮回少年 2021-01-02 09:38

I upgraded jasper report version from 4.5.0 to 5.1.0. When i install my plugin it throws error like some dependency missing. I would like t

相关标签:
2条回答
  • 2021-01-02 10:23

    For anyone having similar issues when using the JasperReports 5.x maven dependencies:

    The jasper guys run a public maven repository where they publish bug fixes to their third party dependencies. These fixed versions are not always present in the public maven repo. So when you have problems with dependencies try to add the repository http://jasperreports.sourceforge.net/maven2.

    0 讨论(0)
  • 2021-01-02 10:35

    For me, the solution was adding

          <dependency>
          <groupId>com.lowagie</groupId>
          <artifactId>itext</artifactId>
          <version>2.1.7</version>
          </dependency>
    

    This way it was not looking for the .js2 version and could resolve the dependency.

    0 讨论(0)
提交回复
热议问题