FunkyMuse
12/08/2022, 3:46 PMChris Lee
12/08/2022, 4:00 PMFunkyMuse
12/08/2022, 6:04 PMorg.json.simple.*
isn’t availableChris Lee
12/08/2022, 6:05 PMAdam S
12/08/2022, 6:14 PMorg.json.simple.*
, so this isn’t particular to Gradle 8. My guess is that you used to have a Gradle plugin that had a dependency on org.json, but you haven’t applied the plugin, or the plugin has been updated to remove that dependency.
If you want to add the JSON library back, you can either do it in ./buildSrc/build.gradle.kts
, or as a buildscript dependency.
Alternatively, Groovy can process JSONFunkyMuse
12/08/2022, 6:30 PM