diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index b4e9503..5881074 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - java-version: [ 11, 17, 19 ] + java-version: [ 11, 17, 18 ] steps: - uses: actions/checkout@v2 diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index b1077fb..e1eea1d 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/README.md b/README.md index b05fab2..ad5223e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](https://opensource.org/licenses/BSD-3-Clause) [![Nexus Snapshot](https://img.shields.io/nexus/s/net.thauvin.erik/jokeapi?server=https%3A%2F%2Foss.sonatype.org%2F)](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/jokeapi/) - [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ethauvin_jokeapi&metric=alert_status)](https://sonarcloud.io/dashboard?id=ethauvin_jokeapi) [![GitHub CI](https://github.com/ethauvin/jokeapi/actions/workflows/gradle.yml/badge.svg)](https://github.com/ethauvin/jokeapi/actions/workflows/gradle.yml) [![CircleCI](https://circleci.com/gh/ethauvin/jokeapi/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/jokeapi/tree/master) # JokeAPI for Kotlin/Java diff --git a/build.gradle.kts b/build.gradle.kts index 76e5ca6..07eee0c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { id("org.jetbrains.kotlinx.kover") version "0.6.0" id("org.sonarqube") version "3.4.0.2513" id("signing") - kotlin("jvm") version "1.7.10" + kotlin("jvm") version "1.7.20" } description = "Kotlin/Java Wrapper for Sv443's JokeApi" @@ -32,7 +32,7 @@ repositories { dependencies { implementation(platform(kotlin("bom"))) - implementation("org.json:json:20220320") + implementation("org.json:json:20220924") testImplementation(kotlin("test")) testImplementation("org.junit.jupiter:junit-jupiter:5.9.1") diff --git a/pom.xml b/pom.xml index 327db84..2a6b152 100644 --- a/pom.xml +++ b/pom.xml @@ -40,7 +40,7 @@ org.jetbrains.kotlin kotlin-bom - 1.7.10 + 1.7.20 pom import @@ -50,13 +50,13 @@ org.jetbrains.kotlin kotlin-stdlib-jdk8 - 1.7.10 + 1.7.20 compile org.json json - 20220320 + 20220924 runtime