Can the JasperReport library be used to create a report from java?

2019-04-29-101741_1280x1024_scrot

I tried to use jasperReport library but it does not work, it always asks for other libraries until it asks for a library that fails in the system. When you add that last library, it breaks the application. Would there be some way to do it?

2019-04-29-102320_1280x1024_scrot

How did you add JasperReports dependency?
Can you provide a test project where the problem is reproduced?

Fix the problem, adding the library in build.gradle

configure ([globalModule, coreModule, webModule]) {

dependencies {

compile group: ‘net.sf.jasperreports’, name: ‘jasperreports’, version: ‘6.8.0’
compile group: ‘com.lowagie’, name: ‘itext’, version: ‘2.1.7’
}
thanks for your help!!