From e131e60e8f177499180bbbca1627a664b54278a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:42:36 +0000 Subject: [PATCH] build(deps): bump org.json:json from 20090211 to 20231013 Bumps [org.json:json](https://github.com/douglascrockford/JSON-java) from 20090211 to 20231013. - [Release notes](https://github.com/douglascrockford/JSON-java/releases) - [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md) - [Commits](https://github.com/douglascrockford/JSON-java/commits) --- updated-dependencies: - dependency-name: org.json:json dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- parser/build.gradle | 2 +- sample/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/build.gradle b/parser/build.gradle index 3605309..d233cf2 100644 --- a/parser/build.gradle +++ b/parser/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation 'org.jsoup:jsoup:1.9.2' implementation 'org.apache.httpcomponents:fluent-hc:4.5.3' implementation 'org.apache.httpcomponents:httpmime:4.5.3' - implementation 'org.json:json:20090211' + implementation 'org.json:json:20231013' implementation 'org.apache.commons:commons-lang3:3.4' implementation 'org.jetbrains:annotations:13.0' implementation 'commons-io:commons-io:2.5' diff --git a/sample/build.gradle b/sample/build.gradle index ea05d62..b2fd917 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -7,5 +7,5 @@ compileJava.options.encoding = 'UTF-8' dependencies { implementation project(':parser') - implementation 'org.json:json:20090211' + implementation 'org.json:json:20231013' }