summaryrefslogtreecommitdiffstats
path: root/tools/run.bat
diff options
context:
space:
mode:
authorKostya <mail@sartin.in>2026-08-18 06:52:47 +0000
committerKostya <mail@sartin.in>2026-08-18 06:52:47 +0000
commitd2688a197bd680580699f05e8194f9180e4832fa (patch)
tree0531ef505b0637c9c4bcc17ab6183a6089e26889 /tools/run.bat
parent13a221ffaefc169d028c7eab6f21ac88052d1d40 (diff)
downloadguess-market-d2688a197bd680580699f05e8194f9180e4832fa.tar.gz
guess-market-d2688a197bd680580699f05e8194f9180e4832fa.tar.xz
guess-market-d2688a197bd680580699f05e8194f9180e4832fa.zip
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.
Diffstat (limited to 'tools/run.bat')
-rw-r--r--tools/run.bat16
1 files changed, 0 insertions, 16 deletions
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 @@
1@echo off
2:: clean old binaries
3rmdir /s /q bin
4mkdir bin
5
6:: compile source files and include libraries
7javac -d "bin/classes" -cp "lib/*" src/main/java/com/example/App.java
8
9:: run the application if compilation succeeded
10if %errorlevel% equ 0 (
11 echo --- Running Application ---
12 java -cp "bin/classes;lib/*" com.example.App
13) else (
14 echo Compilation failed.
15)
16pause