My program is trying to upgrade from an old version of JFreeChart, we are using ant to compile and have JFreeChart imported as a .jar file. I am trying to get the new jfreechart-1.5.3
source (I cannot find a jar on their website) into a working .jar file by using:
jar cf jfreechart.jar jfreechart-1.5.3/src
When trying to compile with the new .jar file. I get the error that "package org.jfree.chart" does not exist. How do I update my program with a .jar file of the newest JFreeChart version?