From e063891901c9ae25559b2301ce41130ba0b4d9ad Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Fri, 3 Nov 2023 11:27:02 +0100 Subject: [PATCH] build: append -SNAPSHOT to version (#1220) --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index bcd1280a6..5e45663d2 100644 --- a/build.sbt +++ b/build.sbt @@ -3,6 +3,8 @@ import sbt.Keys.parallelExecution ThisBuild / resolvers += "Akka library repository".at("https://repo.akka.io/maven") ThisBuild / resolvers += Resolver.jcenterRepo +// append -SNAPSHOT to version when isSnapshot +ThisBuild / dynverSonatypeSnapshots := true Global / excludeLintKeys += autoAPIMappings Global / excludeLintKeys += projectInfoVersion Global / excludeLintKeys += previewPath