Change Log Report

Total number of changed sets: 1

Changes between 2023-10-12 and 2023-11-12

Total commits: 3
Total number of files changed: 2

Timestamp Author Details
2023-11-11 20:25:53 Jegors Čemisovs <jegors_cemisovs@epam.com> legacy-forth-diffblue/pom.xml v 3a8e0440c5a315d72b657c669584fc81a713918c

Remove unnecessary properties and plugins from pom.xml

The properties section and two plugins: jacoco-maven-plugin and spotbugs-maven-plugin were removed from legacy-forth/pom.xml. Also, the plugin configuration for maven-surefire-plugin was deleted from legacy-forth-diffblue/pom.xml. These were redundant or not used, cleaning them up makes the project configuration simpler and more maintainable.
2023-11-11 20:06:04 Jegors Čemisovs <jegors_cemisovs@epam.com> legacy-forth-diffblue/pom.xml v ecd17ac6692f0ce79618ceec5e1ae4d635c46df6

Add aggregate-report module and Jacoco coverage settings

A new module named `aggregate-report` has been added to generate a combined code coverage report from the test results of all modules. This was achieved by creating a new pom.xml file under the aggregate-report directory and adding jacoco-maven-plugin settings specifically for generating aggregate reports. References to the `aggregate-report` module were also added to the root pom file. Configuration related to aggregate reporting in the root pom file that was previously responsible for generating a singular code coverage report was removed in favor of the new module. These changes will improve reporting granularity by providing a unified view of code coverage spanning across all modules.
2023-11-08 06:54:05 Jegors Čemisovs <jegors_cemisovs@epam.com> legacy-forth-diffblue/pom.xml v adfd24cd38198e31013ac0aa1da1d87e1c8ede0f
legacy-forth-diffblue/src/test/java/legacy/forth/ForthEvaluatorDiffblueTest.java v adfd24cd38198e31013ac0aa1da1d87e1c8ede0f

Add pom.xml and ForthEvaluatorDiffblueTest in 'legacy-forth-diffblue'

This commit introduces a new pom.xml for Maven build configuration along with a ForthEvaluatorDiffblueTest file for unit testing of the ForthEvaluator class in the 'legacy-forth-diffblue' directory. The new pom.xml file ensures compatibility with JDK 17 and UTF-8 encoding standard. The comprehensive test suite covers various scenarios enhancing the quality and reliability of the code.