Skip to content

Commit

Permalink
Made the source code to build with scalatest 3.3.0-alpha.1 and seleni…
Browse files Browse the repository at this point in the history
…um 4.16.
  • Loading branch information
cheeseng committed Dec 15, 2023
1 parent c56cce9 commit 516335b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import java.io.PrintWriter
import scala.io.Source

name := "selenium-4.12"
name := "selenium-4.16"

organization := "org.scalatestplus"

version := "3.2.17.0"
version := "3.3.0.0-alpha.1"

homepage := Some(url("https://github.com/scalatest/scalatestplus-selenium"))

Expand All @@ -26,16 +26,16 @@ developers := List(
)
)

scalaVersion := "2.13.11"
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.11", "3.1.3")
scalaVersion := "2.13.12"
crossScalaVersions := List("2.11.12", "2.12.17", "2.13.12", "3.3.1")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.17",
"org.seleniumhq.selenium" % "selenium-java" % "4.12.1",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.12.0",
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
"org.seleniumhq.selenium" % "selenium-java" % "4.16.1",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.13.0",
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.17" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.17" % Test
"org.scalatest" %% "scalatest-funspec" % "3.3.0-alpha.1" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-alpha.1" % Test
)

import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
Expand Down

0 comments on commit 516335b

Please sign in to comment.