-
Notifications
You must be signed in to change notification settings - Fork 41.3k
Add XMLUnit as a managed dependency and to the test starter #9709
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
Conversation
@andrew-j-cohen Please sign the Contributor License Agreement! Click here to manually synchronize the status of this Pull Request. See the FAQ for frequently asked questions. |
@andrew-j-cohen Thank you for signing the Contributor License Agreement! |
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.
Thanks for the PR. Please see my individual comments for a couple of suggested changes.
spring-boot-dependencies/pom.xml
Outdated
@@ -2472,6 +2473,11 @@ | |||
<artifactId>xml-apis</artifactId> | |||
<version>${xml-apis.version}</version> | |||
</dependency> | |||
<dependency> |
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.
Could you move this up a bit please? We try to keep the entries in alphabetical order using groupId
first and then artifactId
if required
@@ -40,6 +40,10 @@ | |||
<artifactId>junit</artifactId> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.xmlunit</groupId> |
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.
Could you move this down a bit please? We try to keep the entries in alphabetical order using groupId first and then artifactId if required
Signed-off-by: Andrew Cohen <[email protected]>
Signed-off-by: Andrew Cohen <[email protected]>
@wilkinsona Thanks for the feedback. I've put the dependencies in the proper order. |
Thank you |
* pr/9709: Add XMLUnit to spring-boot-starter-test
I missed something earlier. We should use We should also upgrade to 2.5 which is the latest version. |
Signed-off-by: Andrew Cohen [email protected]