Skip to content

Commit

Permalink
Updated after esw dependency change for scala-3.3.3 due to esw-shell …
Browse files Browse the repository at this point in the history
…ammonite dependency
  • Loading branch information
abrighton committed Jun 8, 2024
1 parent ca3eaac commit c33e39c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 6 additions & 5 deletions project/Libs.scala
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
import sbt._

object Libs {
val ScalaVersion = "3.4.2"
// val ScalaVersion = "3.4.2"
val ScalaVersion = "3.3.3"

val `scalaTest` = "org.scalatest" %% "scalatest" % "3.2.18" // Apache License 2.0
val `selenium-java` = "org.seleniumhq.selenium" % "selenium-java" % "4.21.0"
val `embedded-keycloak` = "com.github.tmtsoftware.embedded-keycloak" %% "embedded-keycloak" % "3c23339"
val `embedded-keycloak` = "com.github.tmtsoftware.embedded-keycloak" %% "embedded-keycloak" % "2572711"
val `webdriverManager` = "io.github.bonigarcia" % "webdrivermanager" % "5.8.0"
val `tmt-test-reporter` = "com.github.tmtsoftware.rtm" %% "rtm" % "901c57e"
val `tmt-test-reporter` = "com.github.tmtsoftware.rtm" %% "rtm" % "b7997a9"
val scalaTestPlus = "org.scalatestplus" %% "selenium-4-9" % "3.2.16.0"
}

object ESW {
private val defaultESWVersion = "9e22b2a"
private val defaultESWVersion = "c8d646d"

val Version: String = sys.props.get("prod.publish") match {
case Some("true") => sys.env.getOrElse("ESW_VERSION", defaultESWVersion)
Expand All @@ -21,7 +22,7 @@ object ESW {
}

object CSW {
private val defaultCswVersion = "6e0c735"
private val defaultCswVersion = "8031f8e"

val Version: String = sys.props.get("prod.publish") match {
case Some("true") => sys.env.getOrElse("CSW_VERSION", defaultCswVersion)
Expand Down
1 change: 0 additions & 1 deletion rtm.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env bash

RTM_VERSION="0.3.0"
#RTM_VERSION="901c57e"

TEST_STORY_FILE="./RTM/testStoryMapping.txt"

Expand Down

0 comments on commit c33e39c

Please sign in to comment.