We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
validate-changelog
1 parent 46eea55 commit a39cab6Copy full SHA for a39cab6
pom.xml
@@ -1031,6 +1031,10 @@
1031
<includes>
1032
<include>**/*.xml</include>
1033
</includes>
1034
+ <!-- Without an explicit `publicId` and `systemId`, `xml:validate` is trying to download every single XSD from every single XML it encounters.
1035
+ This is causing an extreme slowdown for projects with big changelogs, e.g., Log4j. -->
1036
+ <publicId>https://logging.apache.org/xml/ns</publicId>
1037
+ <systemId>https://logging.apache.org/xml/ns/log4j-changelog-0.xsd</systemId>
1038
<validating>true</validating>
1039
</validationSet>
1040
</validationSets>
0 commit comments