Skip to content

Commit

Permalink
Prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
viktor-podzigun committed Aug 10, 2021
1 parent efe2feb commit 95f5b6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions project/plugins.sbt
@@ -1,15 +1,16 @@
//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/"

val scalaJSVersion =
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.31")

//addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0")
if (scalaJSVersion.startsWith("0.6")) {
addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.5.0-SNAPSHOT").changing())
//addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.5.0-SNAPSHOT").changing())
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin-sjs06" % "0.5.0")
}
else {
addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0-SNAPSHOT").changing())
//addSbtPlugin(("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0-SNAPSHOT").changing())
addSbtPlugin("org.scommons.sbt" % "sbt-scommons-plugin" % "0.5.0")
}

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.5")
Expand Down
2 changes: 1 addition & 1 deletion project/src/main/scala/common/Libs.scala
Expand Up @@ -6,7 +6,7 @@ import scommons.sbtplugin.project.CommonLibs

object Libs extends CommonLibs {

val scommonsNodejsVersion = "1.0.0-SNAPSHOT"
val scommonsNodejsVersion = "0.5.0"
private val sjsReactJsVer = "0.15.0"

lazy val sjsReactJs = Def.setting("org.scommons.shogowada" %%% "scalajs-reactjs" % sjsReactJsVer)
Expand Down

0 comments on commit 95f5b6e

Please sign in to comment.