You might need to include following jar files in your classpath.
jasperreports-3.0.0.jar or whichever version you wish to include,
commons-beanutils-1.8.0jar or whichever verion you wish to include ,
commons-collections-3.2.jar or whichever verion you wish to include
commons-digester-1.8.jar or whichever verion you wish to include
commons-logging-1.1.1.jar. or whichever verion you wish to include
Just google about it if you want different version. Also if you are using any building tools like
ant or maven, you would need to include dependencies in your pom.xml. Following is for the maven. This is just for an example. You might need to amend as per your requirements.
<dependency>
<groupId>jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>3.5.3</version>
</dependency>
Best regards.