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
From mvn dependency:tree
mvn dependency:tree
[INFO] +- com.plaid:plaid-java:jar:17.0.0:compile [INFO] | +- org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:jar:1.0.1:compile [INFO] | | +- org.apache.oltu.oauth2:org.apache.oltu.oauth2.common:jar:1.0.1:compile [INFO] | | | +- org.json:json:jar:20140107:compile
My build report is showing these vulnerabilities:
org.json:json release notes
They just released org.json:json:20231013, which I think fixes all the vulnerabilities.
Not sure if related to #283, is the intermediate dependency not even needed anyways?
The text was updated successfully, but these errors were encountered:
+1 on this ticket. This is getting flagged for vulnerabilities on our side as well and and is affecting our SLAs for resolving vulnerabilities.
Sorry, something went wrong.
Noticed this too. I resolved it with:
implementation("com.plaid:plaid-java:23.0.0") { exclude(group = "org.json", module = "json") } implementation("org.json:json:20240303")
Though, looking at maven, there is a single vulnerability still. Better than 7
No branches or pull requests
From
mvn dependency:tree
My build report is showing these vulnerabilities:
org.json:json release notes
They just released org.json:json:20231013, which I think fixes all the vulnerabilities.
Not sure if related to #283, is the intermediate dependency not even needed anyways?
The text was updated successfully, but these errors were encountered: