summaryrefslogtreecommitdiff
path: root/pom.xml
AgeCommit message (Collapse)Author
2024-07-25Validate import payload and return create/update statsSzymon Szukalski
- Add validation to /import payload - Move import logic to service bean - Track whether entities have been created or update - Report number of created and updated entities as return value for the import endpoint - Add some test coverage to exercise the validators
2024-07-25Separate Docker Compose services for build, test, runSzymon Szukalski
Refactor Docker Compose setup to include distinct services for building, testing, and running the application. Use separate Dockerfiles and configurations for each phase to isolate concerns and improve workflow. Quiet down the maven logs and set log levels to WARN so there is less noise in the logs. Update README file with information on running the project.
2024-07-24Use Apache Commons Math for calculations and implement service testsSzymon Szukalski
Implement TestResultService tests and supporting entity builders. Switch to Apache Commons Math library for descriptive statistics.
2024-07-23Define JPA entities and repositories and H2 DBSzymon Szukalski
2024-07-23Implement simple /import endpoint and testSzymon Szukalski
2024-07-23Create JAXB beans and initial test for request modelSzymon Szukalski
2024-07-23Create foundations using Spring InitializrSzymon Szukalski