From 4f767e14884ba65356429743c3a2e5b5a16de4a1 Mon Sep 17 00:00:00 2001 From: REDNBLACK Date: Mon, 17 Jan 2022 11:10:36 +0300 Subject: [PATCH] Up version + preload credentials if exists --- build.sbt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f2441668..1df4222b 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ lazy val commonSettings = Seq( - version := "0.25.0", + version := "0.26.0", organization := "com.tethys-json", scalaVersion := "2.12.15", crossScalaVersions := Seq("2.12.15", "2.13.8"), @@ -36,6 +36,9 @@ lazy val commonSettings = Seq( url = url("https://github.com/REDNBLACK") ) ), + credentials ++= Option(Path.userHome / ".config" / "sbt" / ".tethys-credentials") + .filter(_.exists()) + .map(Credentials(_)), publishMavenStyle := true, publishTo := { if (isSnapshot.value)