From e999001831c6a670e5f083116287b5cfe4ce2767 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sat, 11 Nov 2023 21:45:11 -0800 Subject: [PATCH] Fixed snapshot version number --- pom.xml | 57 +++++++------------ .../thauvin/erik/bitly/BitlyShortenBuild.java | 2 +- 2 files changed, 20 insertions(+), 39 deletions(-) diff --git a/pom.xml b/pom.xml index e585531..1978052 100644 --- a/pom.xml +++ b/pom.xml @@ -1,14 +1,10 @@ - - - - - - + 4.0.0 net.thauvin.erik bitly-shorten - 1.0.2-SNAPSHOT + 1.0.1-SNAPSHOT bitly-shorten A simple implementation of the Bitly link shortening API v4 https://github.com/ethauvin/bitly-shorten @@ -18,34 +14,6 @@ https://opensource.org/licenses/BSD-3-Clause - - - ethauvin - Erik C. Thauvin - erik@thauvin.net - https://erik.thauvin.net/ - - - - scm:git:https://github.com/ethauvin/bitly-shorten.git - scm:git:git@github.com:ethauvin/bitly-shorten.git - https://github.com/ethauvin/bitly-shorten - - - GitHub - https://github.com/ethauvin/bitly-shorten/issues - - - - - org.jetbrains.kotlin - kotlin-bom - 1.9.20 - pom - import - - - org.jetbrains.kotlin @@ -57,19 +25,32 @@ com.squareup.okhttp3 okhttp 4.12.0 - runtime + compile com.squareup.okhttp3 logging-interceptor 4.12.0 - runtime + compile org.json json 20231013 - runtime + compile + + + ethauvin + Erik C. Thauvin + erik@thauvin.net + https://erik.thauvin.net/ + + + + scm:git:https://github.com/ethauvin/bitly-shorten + scm:git:git@github.com:ethauvin/bitly-shorten.git + https://github.com/ethauvin/bitly-shorten + diff --git a/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java b/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java index 6c00962..c7c06a7 100644 --- a/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java +++ b/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java @@ -28,7 +28,7 @@ public class BitlyShortenBuild extends Project { public BitlyShortenBuild() { pkg = "net.thauvin.erik"; name = "bitly-shorten"; - version = version(1, 0, 2, "SNAPSHOT"); + version = version(1, 0, 1, "SNAPSHOT"); javaRelease = 11; downloadSources = true;