CSCI 1302 Setting the CLASSPATH environment variable Summer 2008 Go back to your .cshrc file, as when you changed your PATH variable in it (previous item on "resources" page). Take the same precautions when editing it again. If you have no lines for JAVA_HOME or CLASSPATH, insert these two lines where other environment variables are set: setenv JAVA_HOME /usr/local/jdk1.5.0 setenv CLASSPATH /usr/local/jdk1.5.0/lib:.:/home/profs/rwr/junit4.3.1:/home/profs/rwr/junit4.3.1/junit-4.3.1.jar You can do this by executing on atlas the command "cp /home/profs/rwr/public_html/CS1302/classpath ." to make a copy of this file to your working directory, edit out all but those two lines, then read those into your .cshrc file next to the other "setenv" entries. This should finish your migration to Java 1.5.0 and also allow you to use JUnit without having to install a separate copy in your own file space. If you already have a line for JAVA_HOME or CLASSPATH, replace it with the one above.