How to set your cree environment


Add the following into your .cshrc file under your home directory.

NOTE: This is not a complete version. I will update the setting after I have tested other packages we will use in this course.

 

 

 

# Place your own stuff here...

setenv JAVA_HOME /usr/dist/pkgs/j2sdk1_3_1

setenv CLASSPATH .:$JAVA_HOME/lib:$JAVA_HOME/jre/lib
setenv PATH .:$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH

#
#setting the classpath for JAXP
#
setenv JAXP_HOME /usr/dist/pkgs/java_pkgs/jaxp-1.1
setenv CLASSPATH $JAXP_HOME/jaxp.jar:$JAXP_HOME/xalan.jar:$JAXP_HOME/crimson.jar:$CLASSPATH

#
# setting the classpath for Aelfred SAX parser
#
setenv CLASSPATH /usr/dist/pkgs/java_pkgs/aelfred/:$CLASSPATH


#
# set the classpath for Servlet API
#
setenv CLASSPATH /usr/dist/pkgs/JSDK2.0/lib/jsdk.jar:$CLASSPATH

#
#setting the classpath for xerces
#
setenv XERCES /usr/dist/pkgs/java_pkgs/xerces-1_4_1
setenv CLASSPATH $XERCES/xerces.jar:$CLASSPATH

#
#set the classpath for Tomcat
#
setenv TOMCAT_HOME /usr/local/lib/Web/jakarta-tomcat-3.2.2