diff options
| author | Kostya <mail@sartin.in> | 2026-08-13 16:24:24 +0000 |
|---|---|---|
| committer | Kostya <mail@sartin.in> | 2026-08-13 16:24:24 +0000 |
| commit | ae8486da5c542d6af9a2e0f9f7cc39729a055eee (patch) | |
| tree | 2b8294ca875290bfbb6d4c32bfffa7d7373e7374 /service/.classpath | |
| parent | 40fa8c52d2afc87c76b2d38566e9920120b2da3c (diff) | |
| download | guess-market-ae8486da5c542d6af9a2e0f9f7cc39729a055eee.tar.gz guess-market-ae8486da5c542d6af9a2e0f9f7cc39729a055eee.tar.xz guess-market-ae8486da5c542d6af9a2e0f9f7cc39729a055eee.zip | |
Add service module with stubbed LocalGuessMarketContext
GuessMarketContext gained a richer surface (loadEvents/listEvents/
buyShares/closeEvent/account/save-restoreState) backed by new
EventDetailDTO, MarketStateDTO, OptionStateDTO and PurchaseReceiptDTO.
The old engine-module provider implemented the previous shape and is
removed; market.guess.service.LocalGuessMarketContext replaces it as a
stub, each method throwing UnsupportedOperationException pending a
real implementation.
Diffstat (limited to 'service/.classpath')
| -rw-r--r-- | service/.classpath | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/service/.classpath b/service/.classpath new file mode 100644 index 0000000..b46be83 --- /dev/null +++ b/service/.classpath | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <classpath> | ||
| 3 | <classpathentry kind="src" output="bin/classes" path="src/main/java"/> | ||
| 4 | <classpathentry kind="src" output="bin/test-classes" path="src/test/java"> | ||
| 5 | <attributes> | ||
| 6 | <attribute name="test" value="true"/> | ||
| 7 | </attributes> | ||
| 8 | </classpathentry> | ||
| 9 | <classpathentry kind="src" path="/guess-market-api"> | ||
| 10 | <attributes> | ||
| 11 | <attribute name="module" value="true"/> | ||
| 12 | </attributes> | ||
| 13 | </classpathentry> | ||
| 14 | <classpathentry kind="lib" path="../lib/jaxb/angus-activation.jar"/> | ||
| 15 | <classpathentry kind="lib" path="../lib/jaxb/jakarta.activation-api.jar"/> | ||
| 16 | <classpathentry kind="lib" path="../lib/jaxb/jaxb-core.jar"/> | ||
| 17 | <classpathentry kind="lib" path="../lib/jaxb/jaxb-impl.jar"/> | ||
| 18 | <classpathentry kind="lib" path="../lib/jaxb/jaxb-xjc.jar"/> | ||
| 19 | <classpathentry kind="lib" path="../lib/jaxb/jakarta.xml.bind-api.jar"/> | ||
| 20 | <classpathentry kind="lib" path="../lib/jaxb/jaxb-jxc.jar"/> | ||
| 21 | <classpathentry kind="lib" path="../lib/gson/gson-2.11.0.jar" sourcepath="../lib/gson/gson-2.11.0-sources.jar"/> | ||
| 22 | <classpathentry kind="lib" path="../lib/junit/junit-platform-console-standalone-6.1.1.jar"/> | ||
| 23 | <classpathentry kind="lib" path="../lib/mockito/mockito-core-5.23.0.jar"/> | ||
| 24 | <classpathentry kind="lib" path="../lib/mockito/byte-buddy-1.17.7.jar"/> | ||
| 25 | <classpathentry kind="lib" path="../lib/mockito/byte-buddy-agent-1.17.7.jar"/> | ||
| 26 | <classpathentry kind="lib" path="../lib/mockito/objenesis-3.3.jar"/> | ||
| 27 | <classpathentry kind="lib" path="../lib/mockito/mockito-junit-jupiter-5.23.0.jar"/> | ||
| 28 | <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
| 29 | <classpathentry kind="output" path="bin"/> | ||
| 30 | </classpath> | ||
| 31 | |||