Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1654,6 +1654,14 @@
<keepBlankLines>true</keepBlankLines>
<lineSeparator>\n</lineSeparator>
<expandEmptyElements>false</expandEmptyElements>
<!--
Match the empty-element style produced by maven-release-plugin and versions-maven-plugin
(Maven core's Xpp3DomWriter writes "<foo />" with a leading space and is NOT configurable).
Without this, sortpom rewrites every "<foo />" to "<foo/>" on each `mvn verify`, silently
mutating pom.xml after every release / version bump and causing CI to flag pom.xml as
auto-modified.
-->
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
<nrOfIndentSpace>4</nrOfIndentSpace>
<sortDependencies>groupId,artifactId,scope</sortDependencies>
<sortPlugins>groupId,artifactId,scope</sortPlugins>
Expand Down
Loading