-
Notifications
You must be signed in to change notification settings - Fork 148
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
Fix #907 (JSON logging broken) #915
Conversation
Codecov Report
@@ Coverage Diff @@
## main #915 +/- ##
=========================================
Coverage 95.53% 95.53%
Complexity 1322 1322
=========================================
Files 78 78
Lines 4273 4273
Branches 475 475
=========================================
Hits 4082 4082
Misses 91 91
Partials 100 100 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Kudos, SonarCloud Quality Gate passed! |
@TestPropertySource(properties = { | ||
"spring.main.log-startup-info=true", | ||
"spring.profiles.active=json-log", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you mind removing the empty line? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
@kschubert thanks for your contribution, would you mind to squash your commits into one for this PR? |
- JSON logging requires jakarta.xml.bind-api - logstash version 7.4 requires logback > 1.2, but Spring requires logback 1.2 - logstash needs to be lowered to version 7.2 (last version that is compatible to logback 1.2)
Kudos, SonarCloud Quality Gate passed! |
fixes #907: add missing dependency jakarta.xml.bind-api; lower logstash version from 7.4 to 7.2 - 7.2 is the last version supporting logback 1.2, which is required by Spring and other components