You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
187 B
Batchfile
10 lines
187 B
Batchfile
11 years ago
|
@echo off
|
||
|
|
||
|
SETLOCAL
|
||
|
|
||
|
set LOCAL_CLASSPATH="../build/editorconfig.jar;.;%CLASSPATH%"
|
||
|
javac -cp %LOCAL_CLASSPATH% TestEditorConfig.java
|
||
|
java -cp %LOCAL_CLASSPATH% TestEditorConfig
|
||
|
|
||
|
ENDLOCAL
|