diff options
author | wisberg <wisberg> | 2003-09-27 01:46:11 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-09-27 01:46:11 +0000 |
commit | b911f2a074cd13c4072c9361336287a16351556e (patch) | |
tree | b73805bf980ca25eb03d7244e6597a4bef720265 /docs/sandbox | |
parent | 2174193632b4f67a0d72816a7c65ce732138c833 (diff) | |
download | aspectj-b911f2a074cd13c4072c9361336287a16351556e.tar.gz aspectj-b911f2a074cd13c4072c9361336287a16351556e.zip |
script sample title, correct todo wrt resource cleanup
Diffstat (limited to 'docs/sandbox')
-rw-r--r-- | docs/sandbox/scripts/snippets.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sandbox/scripts/snippets.sh b/docs/sandbox/scripts/snippets.sh index 76c60ca94..a92ed67a0 100644 --- a/docs/sandbox/scripts/snippets.sh +++ b/docs/sandbox/scripts/snippets.sh @@ -3,7 +3,7 @@ # @author Wes Isberg
-# START-SAMPLE scripts-weaveLibraries
+# START-SAMPLE scripts-weaveLibraries Shell script to use ajc to weave jars and then run
ASPECTJ_HOME="${ASPECTJ_HOME:-c:/aspectj-1.1.0}"
ajc="$ASPECTJ_HOME/bin/ajc"
@@ -13,7 +13,7 @@ $ajc -classpath "$ASPECTJ_HOME/lib/aspectjrt.jar" \ -injars "app.jar;lib.jar" \
-outjar system.jar
-# XXX copy any resources from input jars to output jars
+# XXX copy any required resources from META-INF directories
# run it
java -classpath "aspects.jar;system.jar" com.company.app.Main
|