Updated dependencies

This commit is contained in:
Erik C. Thauvin 2023-09-24 16:22:29 -07:00
parent f0f04b8a6e
commit 6a7a312818
94 changed files with 1683 additions and 1413 deletions

14
pom.xml
View file

@ -10,7 +10,7 @@
<artifactId>akismet-kotlin</artifactId>
<version>0.9.3-SNAPSHOT</version>
<name>akismet-kotlin</name>
<description>Akismet for Kotlin/Java, a client library for accessing the Automattic Kismet (Akismet) spam comments filtering service.</description>
<description>A client library for accessing the Automattic Kismet (Akismet) spam comments filtering service.</description>
<url>https://github.com/ethauvin/akismet-kotlin</url>
<licenses>
<license>
@ -27,7 +27,7 @@
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ethauvin/akismet-kotlin.git</connection>
<connection>scm:git:https://github.com/ethauvin/akismet-kotlin.git</connection>
<developerConnection>scm:git:git@github.com:ethauvin/akismet-kotlin.git</developerConnection>
<url>https://github.com/ethauvin/akismet-kotlin</url>
</scm>
@ -40,7 +40,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>1.7.20</version>
<version>1.9.10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -50,7 +50,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.7.20</version>
<version>1.9.10</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -62,19 +62,19 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.10.0</version>
<version>4.11.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>4.10.0</version>
<version>4.11.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json-jvm</artifactId>
<version>1.4.0</version>
<version>1.6.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>