Jump to content
JasperReports Library 7.0 is now available ×

ANT SCRIPT FOR JASPER REPORT


2004 IR Help

Recommended Posts

By: aroh - aroh

ANT SCRIPT FOR JASPER REPORT

2005-05-26 10:17

Hi All,

 

Anybody has a working Ant Script for compilation and running a Jasper Report on IBM WSAD 5.1.2

 

Pls let me know.

 

Thanks,

 

 

 

 

By: Martyn - martyn-hi-ss-nl

RE: ANT SCRIPT FOR JASPER REPORT

2006-06-01 01:25

 

Code:
<target name="jasper-compile" description="Compiles jasper report designs into .jasper files"> 
<mkdir dir="${jasper.build.dir}" />

<taskdef name="jasper-compile-def" classname="net.sf.jasperreports.ant.JRAntCompileTask">
<classpath>
<path path="${javac.classpath}"/>
</classpath>
</taskdef>

<jasper-compile-def srcdir="${jasper.report.dir}" destdir="${jasper.build.dir}" tempdir="${jasper.build.dir}" keepjava="false" xmlvalidation="true">
<classpath>
<path path="${javac.classpath}"/>
</classpath>

<include name="**/*.jrxml" />
</jasper-compile>
</target>

Post edited by: tcloonan, at: 2006/08/24 06:30

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

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