I am compiling a .java file using the ant compiler. I get the following msgstr error message "org.apache.commons.io package does not exist error"
I downloaded the Apache Commons IO binaries and pasted the .jar files into "C: \ Program Files \ Java \ jdk1.7.0_51 \ lib \ missioncontrol \ plugins"
Any help. Do I need to change the classpath of my assembly XML file?
<target name="compile" description="Compile source code"> <mkdir dir="${build.dir}/classes"/> <javac includeantruntime="false" srcdir="src" destdir="${build.dir}/classes" classpathref="classpath" encoding="UTF8" debug="on" deprecation="on"> <include name="**/*.java"/> <exclude name="**/NutchExample.java"/> </javac> <copy todir="${build.dir}/classes/lia/tools"> <fileset dir="src/lia/tools" excludes="**/*.java"/> </copy> </target>
source share