From fba82567dbbaafc6e284cc4fbe59d2c32e809b98 Mon Sep 17 00:00:00 2001 From: Viktor Podzigun Date: Thu, 3 Jun 2021 14:59:13 +0200 Subject: [PATCH] Prepare for next release --- pgp.sbt | 1 + project/plugins.sbt | 5 +++-- project/src/main/scala/common/Libs.scala | 2 +- 3 files changed, 5 insertions(+), 3 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 6d5a27b..06c8e38 100644 --- a/project/src/main/scala/common/Libs.scala +++ b/project/src/main/scala/common/Libs.scala @@ -6,7 +6,7 @@ import scommons.sbtplugin.project.CommonLibs object Libs extends CommonLibs { - val scommonsNodejsVersion = "1.0.0-SNAPSHOT" + val scommonsNodejsVersion = "0.4.0" private val sjsReactJsVer = "0.15.0" lazy val sjsReactJs = Def.setting("org.scommons.shogowada" %%% "scalajs-reactjs" % sjsReactJsVer)