File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ setlocal
3
+ set root = %~dp0
4
+ set classpath = %root% \dist\kcae.jar
5
+ set classpath = %classpath% ;%root% \ext\commons-lang3-3.1.jar
6
+ set classpath = %classpath% ;%root% \ext\commons-logging-1.1.1.jar
7
+ set classpath = %classpath% ;%root% \ext\commons-logging-adapters-1.1.1.jar
8
+ set classpath = %classpath% ;%root% \ext\commons-logging-api-1.1.1.jar
9
+ set classpath = %classpath% ;%root% \ext\jackson-core-asl-1.9.7.jar
10
+ set classpath = %classpath% ;%root% \ext\jackson-mapper-asl-1.9.7.jar
11
+ set classpath = %classpath% ;%root% \ext\jython-2.7a2.jar
12
+ set classpath = %classpath% ;%root% \ext\log4j-1.2.9.jar
13
+ set logger = org.apache.commons.logging.impl.Log4JLogger
14
+ set java = java
15
+ set args =
16
+
17
+ :setupArgs
18
+ if " " %1 " " == " " " " goto doneSetupArgs
19
+ set args = %args% %1
20
+ shift
21
+ goto setupArgs
22
+
23
+ :doneSetupArgs
24
+ @ echo on
25
+ " %java% " -Dorg.apache.commons.logging.Log=" %logger% " -Dpython.verbose=debug -classpath " %classpath% " %args%
26
+
27
+ endlocal
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+
3
+
4
+ setlocal
5
+ set jvmargs =
6
+
7
+ :setupJVMArgs
8
+ if " " %1 " " == " " " " goto doneSetupJVMArgs
9
+ if not " " %1 :~0,1" " == " -" goto doneSetupJVMArgs
10
+ set jvmargs = %jvmargs% %1
11
+ shift
12
+ goto setupJVMArgs
13
+
14
+ :doneSetupJVMArgs
15
+
16
+ run-java %jvmargs% kanga.kcae.view.swing.SymbolEditorFrame %*
17
+
You can’t perform that action at this time.
0 commit comments