-
-
Notifications
You must be signed in to change notification settings - Fork 76
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
Gradle 8.4: org.xml.sax.SAXNotRecognizedException: Property 'http://javax.xml.XMLConstants/property/accessExternalSchema' is not recognized. #349
Comments
After some reading, I believe this is related: https://docs.gradle.org/current/userguide/upgrading_version_8.html#xml_parsing_now_requires_recent_parsers I think there is a necessary change here that may be similar to what the gradle-versions-plugin did in order to mitigate this issue. |
I have also hit this. I can work around by adding
to my |
Also hit by this it seems. 😒
The file it fails on looks like this: <?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<versioning>
<latest>1.17.1</latest>
<release>1.17.1</release>
<versions>
<version>0.2.1b</version>
<version>0.2.2</version>
<version>0.3.1</version>
<version>1.1.1</version>
<version>1.2.1</version>
<version>1.2.2</version>
<version>1.2.3</version>
<version>1.3.1</version>
<version>1.3.2</version>
<version>1.3.3</version>
<version>1.4.1</version>
<version>1.5.1</version>
<version>1.5.2</version>
<version>1.6.0</version>
<version>1.6.1</version>
<version>1.6.2</version>
<version>1.6.3</version>
<version>1.7.1</version>
<version>1.7.2</version>
<version>1.7.3</version>
<version>1.8.1</version>
<version>1.8.2</version>
<version>1.8.3</version>
<version>1.9.1</version>
<version>1.9.2</version>
<version>1.10.1</version>
<version>1.10.2</version>
<version>1.10.3</version>
<version>1.11.1</version>
<version>1.11.2</version>
<version>1.11.3</version>
<version>1.12.1</version>
<version>1.12.2</version>
<version>1.13.1</version>
<version>1.14.1</version>
<version>1.14.2</version>
<version>1.14.3</version>
<version>1.15.1</version>
<version>1.15.2</version>
<version>1.15.3</version>
<version>1.15.4</version>
<version>1.16.1</version>
<version>1.16.2</version>
<version>1.17.1</version>
</versions>
<lastUpdated>20231127013755</lastUpdated>
</versioning>
</metadata> |
For me I found that one of the gradle plugins was dependent on Xerces still. I filed a bug with the plugin author and adjusted the |
Thanks for the tip 👍 🙇 For some inexplicable reason I thought this issue was in the main Gradle issue tracker. 🙈 I'm not using the In any case, I worked around my issue like this for now: dependencies {
constraints {
javadocDoclet "org.jsoup:jsoup:1.17.1"
}
} |
I'm seeing an issue related to Gradle 8.4 where the maven metadata can't seem to be read.
Short failure:
Stacktrace:
The text was updated successfully, but these errors were encountered: