diff --git a/examples/bld/src/bld/java/com/example/CryptoPriceExampleBuild.java b/examples/bld/src/bld/java/com/example/CryptoPriceExampleBuild.java index 121897e..dc2f5e7 100644 --- a/examples/bld/src/bld/java/com/example/CryptoPriceExampleBuild.java +++ b/examples/bld/src/bld/java/com/example/CryptoPriceExampleBuild.java @@ -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", "20240205")); + .include(dependency("org.json", "json", "20240303")); } public static void main(String[] args) { diff --git a/examples/gradle/build.gradle.kts b/examples/gradle/build.gradle.kts index 2f16e60..1aa9059 100644 --- a/examples/gradle/build.gradle.kts +++ b/examples/gradle/build.gradle.kts @@ -16,7 +16,7 @@ repositories { dependencies { implementation("net.thauvin.erik:cryptoprice:1.0.2") - implementation("org.json:json:20240205") + implementation("org.json:json:20240303") } java { diff --git a/pom.xml b/pom.xml index 522013e..f76fc8e 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ org.json json - 20240205 + 20240303 compile diff --git a/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java b/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java index 70ec84b..3c1277c 100644 --- a/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java +++ b/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java @@ -40,7 +40,7 @@ public class CryptoPriceBuild extends Project { final var kotlin = version(1, 9, 24); scope(compile) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)) - .include(dependency("org.json", "json", "20240205")) + .include(dependency("org.json", "json", "20240303")) .include(dependency("com.squareup.okhttp3", "okhttp", version(4, 12, 0))); scope(test) .include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 0)))