From d2688a197bd680580699f05e8194f9180e4832fa Mon Sep 17 00:00:00 2001 From: Kostya Date: Tue, 18 Aug 2026 06:52:47 +0000 Subject: Add XML schema validation, split build scripts by module, rename BuyMenuCommand to PlaceOrderMenuCommand Introduces XMLValidatorV1 and deserializer/adapter classes for events, ledgers, markets, users, and trading mechanisms. Replaces the monolithic build.bat/run.sh scripts with per-module tools (_util.sh, build.sh, package.sh, test.sh) that compile in dependency order. --- tools/run.bat | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 tools/run.bat (limited to 'tools/run.bat') diff --git a/tools/run.bat b/tools/run.bat deleted file mode 100644 index 8480652..0000000 --- a/tools/run.bat +++ /dev/null @@ -1,16 +0,0 @@ -@echo off -:: clean old binaries -rmdir /s /q bin -mkdir bin - -:: compile source files and include libraries -javac -d "bin/classes" -cp "lib/*" src/main/java/com/example/App.java - -:: run the application if compilation succeeded -if %errorlevel% equ 0 ( - echo --- Running Application --- - java -cp "bin/classes;lib/*" com.example.App -) else ( - echo Compilation failed. -) -pause -- cgit v1.2.3