Updated dependencies

This commit is contained in:
Erik C. Thauvin 2023-09-27 17:08:18 -07:00
parent 628481606c
commit 045ad0f276
28 changed files with 457 additions and 143 deletions

18
pom.xml
View file

@ -10,7 +10,7 @@
<artifactId>pinboard-poster</artifactId>
<version>1.0.4-SNAPSHOT</version>
<name>pinboard-poster</name>
<description>Pinboard Poster for Kotlin/Java</description>
<description>A small library for posting to Pinboard</description>
<url>https://github.com/ethauvin/pinboard-poster</url>
<licenses>
<license>
@ -27,7 +27,7 @@
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ethauvin/pinboard-poster.git</connection>
<connection>scm:git:https//github.com/ethauvin/pinboard-poster.git</connection>
<developerConnection>scm:git:git@github.com:ethauvin/pinboard-poster.git</developerConnection>
<url>https://github.com/ethauvin/pinboard-poster</url>
</scm>
@ -40,7 +40,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>1.5.31</version>
<version>1.9.10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -50,19 +50,25 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.5.31</version>
<version>1.9.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.1</version>
<version>4.11.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio-jvm</artifactId>
<version>3.5.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>4.9.1</version>
<version>4.11.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>