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.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tools/run.sh (limited to 'tools/run.sh') diff --git a/tools/run.sh b/tools/run.sh deleted file mode 100644 index 55f1094..0000000 --- a/tools/run.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# clean up -rm -rf bin && mkdir bin - -# run the app if compilation succeeded -if javac -d "bin/classes" -cp "lib/*" src/main/java/com/example/App.java; then - echo "--- Running Application ---" - java -cp "bin/classes:lib/*" com.example.App -else - echo "Compilation failed." -fi -- cgit v1.2.3