diff options
| author | Kostya <mail@sartin.in> | 2026-08-18 06:52:47 +0000 |
|---|---|---|
| committer | Kostya <mail@sartin.in> | 2026-08-18 06:52:47 +0000 |
| commit | d2688a197bd680580699f05e8194f9180e4832fa (patch) | |
| tree | 0531ef505b0637c9c4bcc17ab6183a6089e26889 /tools/run.bat | |
| parent | 13a221ffaefc169d028c7eab6f21ac88052d1d40 (diff) | |
| download | guess-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.bat | 16 |
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 | ||
| 3 | rmdir /s /q bin | ||
| 4 | mkdir bin | ||
| 5 | |||
| 6 | :: compile source files and include libraries | ||
| 7 | javac -d "bin/classes" -cp "lib/*" src/main/java/com/example/App.java | ||
| 8 | |||
| 9 | :: run the application if compilation succeeded | ||
| 10 | if %errorlevel% equ 0 ( | ||
| 11 | echo --- Running Application --- | ||
| 12 | java -cp "bin/classes;lib/*" com.example.App | ||
| 13 | ) else ( | ||
| 14 | echo Compilation failed. | ||
| 15 | ) | ||
| 16 | pause | ||