Bumped org.json to version 20240303

This commit is contained in:
Erik C. Thauvin 2024-05-10 00:13:57 -07:00
parent 7651260d97
commit e0c4284529
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ public class ExampleBuild extends BaseProject {
scope(compile) scope(compile)
.include(dependency("net.thauvin.erik:bitly-shorten:1.0.2-SNAPSHOT")) .include(dependency("net.thauvin.erik:bitly-shorten:1.0.2-SNAPSHOT"))
.include(dependency("org.json:json:20240205")); .include(dependency("org.json:json:20240303"));
} }
public static void main(String[] args) { public static void main(String[] args) {

View file

@ -18,7 +18,7 @@ repositories {
dependencies { dependencies {
implementation("net.thauvin.erik:bitly-shorten:1.0.1") implementation("net.thauvin.erik:bitly-shorten:1.0.1")
implementation("org.json:json:20240205") implementation("org.json:json:20240303")
} }
application { application {

View file

@ -48,7 +48,7 @@
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>
<artifactId>json</artifactId> <artifactId>json</artifactId>
<version>20240205</version> <version>20240303</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View file

@ -78,7 +78,7 @@ public class BitlyShortenBuild extends Project {
.include(dependency("com.squareup.okhttp3", "okhttp", okHttp)) .include(dependency("com.squareup.okhttp3", "okhttp", okHttp))
.include(dependency("com.squareup.okhttp3", "logging-interceptor", okHttp)) .include(dependency("com.squareup.okhttp3", "logging-interceptor", okHttp))
// JSON // JSON
.include(dependency("org.json", "json", "20240205")); .include(dependency("org.json", "json", "20240303"));
scope(test) scope(test)
.include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin)) .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))