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

What necessary dependencies need to implement in Java Maven project which JasperReport version is 6.16.0?


eggchun32

Recommended Posts

As my question mentioned, assume that the requested version of JasperReport in Java project is 6.16.0.

Jaspersoft Studio is also version 6.16.0 to generate the reports.

The Java Maven project is used to export and generate PDF or Excel.

Can anyone list out some necessary or requested dependencies to me for reference?

Thank you so much!!

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

I haven't used it for generating Excel files, but pdfs just require the library itself:

<!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.16.0</version>
</dependency>

However, if your project requires some of the extentions this library, the POM should also contain them. For example, the Custom Visualization Components extention requires the following dependency:

</dependency>
<!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-cu... -->
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports-custom-visualization</artifactId>
<version>6.16.0</version>
</dependency>

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...