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.sh | |
| 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.sh')
| -rw-r--r-- | tools/run.sh | 12 |
1 files changed, 0 insertions, 12 deletions
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 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | # clean up | ||
| 4 | rm -rf bin && mkdir bin | ||
| 5 | |||
| 6 | # run the app if compilation succeeded | ||
| 7 | if javac -d "bin/classes" -cp "lib/*" src/main/java/com/example/App.java; then | ||
| 8 | echo "--- Running Application ---" | ||
| 9 | java -cp "bin/classes:lib/*" com.example.App | ||
| 10 | else | ||
| 11 | echo "Compilation failed." | ||
| 12 | fi | ||