Skip to content

Commit

Permalink
scalatest 3.2.18 (#226)
Browse files Browse the repository at this point in the history
* scalatest 3.2.18

* more changes

* Update build.sbt
  • Loading branch information
pjfanning authored Feb 9, 2024
1 parent bb7d4fc commit e870ee1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions benchmark-java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ val root = project
"io.grpc" % "grpc-testing" % grpcVersion,
"org.hdrhistogram" % "HdrHistogram" % "2.1.12",
"org.apache.commons" % "commons-math3" % "3.6.1",
"org.scalatest" %% "scalatest" % "3.2.15" % "test",
"org.scalatestplus" %% "junit-4-13" % "3.2.15.0" % "test"),
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.scalatestplus" %% "junit-4-13" % "3.2.18.0" % Test),
PB.artifactResolver := PB.artifactResolver.dependsOn(codeGenProject / Compile / publishLocal).value)

compile / javacOptions += "-Xlint:deprecation"
4 changes: 2 additions & 2 deletions plugin-tester-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ dependencies {
implementation group: 'org.apache.pekko', name: "pekko-http-cors_${scalaBinaryVersion}", version: '1.0.0'
implementation "org.scala-lang:scala-library:${scalaFullVersion}"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.0.2"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.15"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.15.0"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.18"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.18.0"
}

tasks.withType(Copy).configureEach {
Expand Down
4 changes: 2 additions & 2 deletions plugin-tester-scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ dependencies {
implementation group: 'org.apache.pekko', name: "pekko-http-cors_${scalaBinaryVersion}", version: '1.0.0'
implementation "org.scala-lang:scala-library:${scalaFullVersion}"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.0.2"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.15"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.15.0"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.18"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.18.0"
}

tasks.withType(Copy).configureEach {
Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.12</artifactId>
<version>3.0.5</version>
<version>3.2.18</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object Dependencies {
val googleProtoc = "3.20.1" // checked synced by VersionSyncCheckPlugin
val googleProtobufJava = "3.21.12"

val scalaTest = "3.2.15"
val scalaTest = "3.2.18"

val maven = "3.8.6"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ val grpcVersion = "1.54.2" // checked synced by VersionSyncCheckPlugin
libraryDependencies ++= Seq(
"io.grpc" % "grpc-interop-testing" % grpcVersion % "protobuf-src",
"org.apache.pekko" %% "pekko-grpc-interop-tests" % sys.props("project.version") % "test",
"org.scalatest" %% "scalatest" % "3.2.15" % "test" // ApacheV2
)
"org.scalatest" %% "scalatest" % "3.2.18" % Test)

scalacOptions ++= List("-unchecked", "-deprecation", "-language:_", "-encoding", "UTF-8")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ scalacOptions += "-Xfatal-warnings"
enablePlugins(PekkoGrpcPlugin)

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.15" % "test")
"org.scalatest" %% "scalatest" % "3.2.18" % Test)

0 comments on commit e870ee1

Please sign in to comment.