Bump org.json to version 20250107

This commit is contained in:
Erik C. Thauvin 2025-03-16 18:12:16 -07:00
parent d551c8b703
commit cd9af7444b
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ public class CryptoPriceExampleBuild extends BaseProject {
scope(compile)
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 3, "SNAPSHOT")))
.include(dependency("org.json", "json", "20240303"));
.include(dependency("org.json", "json", "20250107"));
}
public static void main(String[] args) {

View file

@ -72,7 +72,7 @@ public class CryptoPriceBuild extends Project {
final var kotlin = version(2, 1, 10);
scope(compile)
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
.include(dependency("org.json", "json", "20240303"))
.include(dependency("org.json", "json", "20250107"))
.include(dependency("com.squareup.okhttp3", "okhttp", version(4, 12, 0)));
scope(test)
.include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 1)))