From 5c7342b169a71444c11e677d8e259a271bed4b76 Mon Sep 17 00:00:00 2001 From: Viktor Podzigun Date: Thu, 3 Jun 2021 15:47:49 +0200 Subject: [PATCH] Prepare for next release --- pgp.sbt | 1 + project/plugins.sbt | 5 +++-- project/src/main/scala/common/Libs.scala | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pgp.sbt b/pgp.sbt index 641294a..b25983a 100644 --- a/pgp.sbt +++ b/pgp.sbt @@ -1,6 +1,7 @@ //see: https://www.scala-sbt.org/sbt-pgp/usage.html +useGpg := false pgpPublicRing := file("./travis/pubring.gpg") pgpSecretRing := file("./travis/secring.gpg") pgpPassphrase := sys.env.get("PGP_PASS").map(_.toArray) diff --git a/project/plugins.sbt b/project/plugins.sbt index 40e6251..c0179c1 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,5 @@ //resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/" -resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" +//resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" -addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin" % "0.4.0-SNAPSHOT").changing()) +//addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin" % "0.4.0-SNAPSHOT").changing()) +addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin" % "0.4.0") diff --git a/project/src/main/scala/common/Libs.scala b/project/src/main/scala/common/Libs.scala index 0bf1e04..36b4188 100644 --- a/project/src/main/scala/common/Libs.scala +++ b/project/src/main/scala/common/Libs.scala @@ -6,9 +6,9 @@ import scommons.sbtplugin.project.CommonLibs object Libs extends CommonLibs { - val scommonsNodejsVersion = "1.0.0-SNAPSHOT" - val scommonsReactVersion = "1.0.0-SNAPSHOT" - private val scommonsApiVersion = "1.0.0-SNAPSHOT" + val scommonsNodejsVersion = "0.4.0" + val scommonsReactVersion = "0.4.0" + private val scommonsApiVersion = "0.4.0" private val sjsReactJsVer = "0.15.0" lazy val scommonsApiXhr = Def.setting("org.scommons.api" %%% "scommons-api-xhr" % scommonsApiVersion)