From 50f58c9dc48accff01cd3db2903e8149375e445a Mon Sep 17 00:00:00 2001 From: ckipp01 Date: Tue, 4 May 2021 10:37:14 +0200 Subject: [PATCH] Don't have a local snapshot version I originally added this in here to make it easier locally to just publish a snapshot for testing, but it also requires a manual update. It's probably fine to just remove this and let sbt-dynver via sbt-ci-release fully handle this. --- build.sbt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index 9abf00ec..8c1ba7d4 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,6 @@ name := "sbt-scoverage" import sbt.ScriptedPlugin.autoImport.scriptedLaunchOpts -def localSnapshotVersion = "1.7.1-SNAPSHOT" def isCI = System.getenv("CI") != null def scoverageVersion = "1.4.5" @@ -27,11 +26,7 @@ inThisBuild( licenses := Seq( "Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0") ), - scalaVersion := "2.12.13", - version ~= { dynVer => - if (isCI) dynVer - else localSnapshotVersion // only for local publishing - } + scalaVersion := "2.12.13" ) )