view swank-all @ 0:e8171a7df761

initial commit
author Robert McIntyre <rlm@mit.edu>
date Sun, 16 Oct 2011 22:55:41 -0700
parents
children
line wrap: on
line source
1 #!/bin/sh
3 java \
4 \
5 `: # java VM options`\
6 -verbose:gc \
7 -Xmn500M \
8 -Xms2000M \
9 -Xmx2000M \
10 -server \
11 \
12 `: # classpath contains all of my projects.`\
13 -cp \
14 \
15 `: # my own projects`\
16 /home/r/proj/roBin/src:\
17 /home/r/proj/roBin/lib/*:\
18 /home/r/proj/aurellem/src:\
19 /home/r/proj/pokemon-types/src:\
20 /home/r/proj/cortex/src:\
21 /home/r/proj/cortex/assets:\
22 /home/r/proj/abomination/src:\
23 /home/r/proj/abomination/classes:\
24 \
25 `: # libraries`\
26 /home/r/proj/roBin/incanter/*:\
27 /home/r/proj/roBin/enlive/src:\
28 /home/r/proj/lp_solve-5.5-java/lib/lpsolve55j.jar:\
29 /home/r/proj/jMonkeyEngine3/dist/jMonkeyEngine3.jar:\
30 /home/r/proj/jMonkeyEngine3/dist/lib/*:\
31 \
32 \
33 `: # interfacing with C libraries`\
34 -Djava.library.path=\
35 /home/r/proj/lp_solve-5.5/lpsolve-5.5/bin/ux64:\
36 /home/r/proj/lp_solve-5.5-java/lib/ux64\
37 \
38 `: # start the repl for clojure`\
39 clojure.main -e \
40 "(do \
41 (require 'swank.swank) \
42 (swank.swank/start-repl 4005 ))"
48 # removed genesis stuff
49 #`: # Genesis Stuff.`\
50 #/home/r/proj/Genesis/src:\
51 #/home/r/proj/workspace/Gauntlet/binary:\
52 #/home/r/proj/workspace/Clips/bin:\
53 #/home/r/proj/workspace/Propagators/bin\