• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jasper report and maven dependencies

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello everyone,

I have been trying to work on Jasper report. I have built few reports and I was able to export this building (design) within .pdf file. Now I wish to deploy the design using Java. In order to achieve this, one needs to import jasperreports' package like net.sf.jasperreports.engine. I want to know I should import this package in eclipse galelio? Do I need to download net.sf.jasperreports.engine? Or is there any .jar file available to do the same? I have been searching for Eclipse only through google. I haven't found desirable results yet. Alternately, I have other option to import these packages and ask maven (pom.xml) to include these packages. Does anyone know whether there is compatibility between maven dependencies and jasper reports? I have gone through the following link.
http://mojo.codehaus.org/jasperreports-maven-plugin/dependencies.html .
Still i am looking optimal solution. Has anyone worked on similar task? It would be a great help for me if you share it. Thanks in advance.

Best regards.
 
author
Posts: 3285
13
Mac OS X Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you checked Maven Central for the JAR files?
 
Rajubhai Kotwal
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Martijn Verburg

Thanks a lot for your suggestions. I have included required jar files in the path and issue is resolved. I mean it seems that it has resolved at present. I included dependencies in pom.xml as well. So hopefully I will be having a ptimal solution by tonight. Thank you.

Best regards.
 
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
 
Rajubhai Kotwal
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Tim Holloway


Thank you very much friend.


Best regards.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Whoa; that's Tomcat's JSP engine, not Jasper Reports.
 
Tim Holloway
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

David Newton wrote:Whoa; that's Tomcat's JSP engine, not Jasper Reports.



 
Rajubhai Kotwal
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<dependency>
<groupId>jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>3.5.3</version>
</dependency>


right solution and included the required jar files in my workspace. Topic seized.
 
reply
    Bookmark Topic Watch Topic
  • New Topic