Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Oct 19, 2024
1 parent 86800ec commit b58675d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version := "1.0"

description := "Uniform test interface to Scala/Java test frameworks (specs, ScalaCheck, ScalaTest, JUnit and other)"

scalaVersion := "2.10.2"
scalaVersion := "2.13.15"

// disable using the Scala version in output paths and artifacts
crossPaths := false
Expand All @@ -20,7 +20,8 @@ publishTo := {
else Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
}

libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % Test
libraryDependencies += "org.scalatest" %% "scalatest-refspec" % "3.2.19" % Test
libraryDependencies += "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % Test

publishMavenStyle := true

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.8
sbt.version=1.10.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.0")
6 changes: 4 additions & 2 deletions src/test/scala/sbt/testing/UnitSpec.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package sbt.testing

import org.scalatest._
import org.scalatest.matchers.should.Matchers
import org.scalatest.prop.TableDrivenPropertyChecks
import org.scalatest.refspec.RefSpec

class UnitSpec extends Spec with Matchers with prop.TableDrivenPropertyChecks {
class UnitSpec extends RefSpec with Matchers with TableDrivenPropertyChecks {
def red(): String = "der".reverse
}

0 comments on commit b58675d

Please sign in to comment.