-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for AlpineBits HotelData 2022-10 #127
Merged
RudiThoeni
merged 21 commits into
noi-techpark:main
from
gappc:feature-127-implement-2022-10
Jun 10, 2024
Merged
Add support for AlpineBits HotelData 2022-10 #127
RudiThoeni
merged 21 commits into
noi-techpark:main
from
gappc:feature-127-implement-2022-10
Jun 10, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit marks the beginning of the implementation of HotelData 2022-10 support.
Version 5 of Hibernate is the last one to support the old java.persistence namespace. From version 6 onward, the new jakarta.persistence namespace must be used, which is a breaking change. This commit tries to not introduce breaking changes, therefor, the most current version 5 of Hibernate is used.
The H2 database is used for integration tests. This commit also updates the persistence.xml to support the never H2 version.
The following versions were updated to fix incompatibilities due to the testng version update: - bump maven-surefire-plugin to 3.2.5 (latest) - bump arquillian-testng-container to 1.8.0.Final (latest) In addition, the "parallel" flag for TestNG unit tests was removed because it caused errors.
This commit adds the necessary constants, XSD, RNG and sample files to add base AlpineBits HotelData 2022 support.
For the FreeRooms and Inventory actions, the validation remains the same.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for AlpineBits HotelData 2022-10
In addition, the PR updates the project dependencies to the latest available versions with Java 8 compatibility - where possible