2.0.0-SNAPSHOT

This commit is contained in:
Erik C. Thauvin 2024-09-20 17:16:28 -07:00
parent ba92c1f3b1
commit c639ea4346
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 7 additions and 8 deletions

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>bitly-shorten</artifactId>
<version>2.0.0</version>
<version>2.0.0-SNAPSHOT</version>
<name>bitly-shorten</name>
<description>A simple implementation of the Bitly link shortening API v4</description>
<url>https://github.com/ethauvin/bitly-shorten</url>
@ -18,19 +18,19 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.0.0</version>
<version>2.0.20</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>2.0.0</version>
<version>2.0.20</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>2.0.0</version>
<version>2.0.20</version>
<scope>compile</scope>
</dependency>
<dependency>