Upgraded to Kotlin 1.7.20

This commit is contained in:
Erik C. Thauvin 2022-09-29 21:32:03 -07:00
parent ad7bab2f28
commit 790238a2b4
5 changed files with 7 additions and 8 deletions

View file

@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
java-version: [ 11, 17, 19 ]
java-version: [ 11, 17, 18 ]
steps:
- uses: actions/checkout@v2

2
.idea/kotlinc.xml generated
View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="KotlinJpsPluginSettings">
<option name="version" value="1.7.10" />
<option name="version" value="1.7.20" />
</component>
</project>

View file

@ -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) <!-- [![Release](https://img.shields.io/github/release/ethauvin/jokeapi.svg)](https://github.com/ethauvin/jokeapi/releases/latest) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/jokeapi/badge.svg?color=blue)](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/jokeapi) --> [![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/)
<!-- [![Known Vulnerabilities](https://snyk.io/test/github/ethauvin/jokeapi/badge.svg?targetFile=pom.xml)](https://snyk.io/test/github/ethauvin/jokeapi?targetFile=pom.xml) -->
[![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

View file

@ -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")

View file

@ -40,7 +40,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>1.7.10</version>
<version>1.7.20</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -50,13 +50,13 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.7.10</version>
<version>1.7.20</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
<version>20220924</version>
<scope>runtime</scope>
</dependency>
</dependencies>