We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A valid POM conforming to version 4.1.0 of the format and starting with
<project root="true" xmlns="http://maven.apache.org/POM/4.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd"> <modelVersion>4.1.0</modelVersion>
gets rewritten to
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.1.0</modelVersion>
Essentially
project/@root
project/modelVersion
I would expect tidy:pom to preserve all of the original, except for possibly reordering attributes.
tidy:pom
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A valid POM conforming to version 4.1.0 of the format and starting with
gets rewritten to
Essentially
project/@root
) get removed,project/modelVersion
curiously remains unchanged.I would expect
tidy:pom
to preserve all of the original, except for possibly reordering attributes.The text was updated successfully, but these errors were encountered: