Updated dependencies

This commit is contained in:
Erik C. Thauvin 2023-01-29 14:02:14 -08:00
parent c2e22f84b8
commit ff5af68360
133 changed files with 5477 additions and 1281 deletions

12
pom.xml
View file

@ -10,7 +10,7 @@
<artifactId>bitly-shorten</artifactId>
<version>0.9.4-SNAPSHOT</version>
<name>bitly-shorten</name>
<description>Bitly Shortener for Kotlin/Java</description>
<description>A simple implementation of the Bitly link shortening API v4</description>
<url>https://github.com/ethauvin/bitly-shorten</url>
<licenses>
<license>
@ -27,8 +27,8 @@
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ethauvin/bitly-shorten.git</connection>
<developerConnection>scm:git:git@github.com:ethauvin/bitly-shorten.git</developerConnection>
<connection>scm:git://github.com/ethauvin/bitly-shorten.git</connection>
<developerConnection>scm:git@github.com:ethauvin/bitly-shorten.git</developerConnection>
<url>https://github.com/ethauvin/bitly-shorten</url>
</scm>
<issueManagement>
@ -40,7 +40,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>1.7.10</version>
<version>1.8.0</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.10</version>
<version>1.8.0</version>
<scope>compile</scope>
</dependency>
<dependency>
@ -68,7 +68,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
<version>20220924</version>
<scope>runtime</scope>
</dependency>
</dependencies>