org.aspectj/docs/teaching/exercises/setpaths
jhugunin 57445dd3ec Addendum to the original contribution from PARC. Three presentations:
oneHour talk
three hour tutorial
six hour tutorial including exercises
2003-08-01 18:53:07 +00:00

15 rader
394 B
Bash

#!/bin/sh
# Change this to be the full path for this directory
EXTRACTION=$HOME/aj-oopsla
if [ "$JAVA_HOME" = "" ]
then
echo Please remember to manually set $JAVA_HOME to
echo the location of your java installation
fi
export ASPECTJ_HOME=$EXTRACTION/aspectj
export PATH=$ASPECTJ_HOME/bin:$PATH
export CLASSPATH=.:$ASPECTJ_HOME/lib/aspectjrt.jar:$EXTRACTION/junit.jar