14 lines
562 B
Batchfile
14 lines
562 B
Batchfile
@echo off
|
|
set CP=bin;temp_classpath/BOOT-INF/classes;temp_classpath/BOOT-INF/lib/*
|
|
if exist bin rmdir /s /q bin
|
|
if not exist bin mkdir bin
|
|
echo [1/2] Compiling Reference Test...
|
|
javac -encoding UTF-8 -d bin -cp "temp_classpath/BOOT-INF/classes;temp_classpath/BOOT-INF/lib/*" src\main\java\com\chinaweal\youfool\reportdetect\modules\ocr\service\*.java ReferenceManualTest.java
|
|
if %ERRORLEVEL% NEQ 0 (
|
|
echo Compilation FAILED.
|
|
exit /b %ERRORLEVEL%
|
|
)
|
|
echo [2/2] Running Reference Test...
|
|
java -Dfile.encoding=UTF-8 -cp "%CP%" ReferenceManualTest
|
|
echo Done.
|