Skip to content

Commit

Permalink
Merge pull request #26 from narma/bump_libraries
Browse files Browse the repository at this point in the history
bump libraries
  • Loading branch information
myazinn authored Nov 20, 2022
2 parents 828d47b + d0e38da commit d3bd669
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))

def shapelessDeps(scalaVersion: String) = CrossVersion.partialVersion(scalaVersion) match {
case Some((3, _)) => Nil
case _ => Seq("com.chuusai" %% "shapeless" % "2.3.9")
case _ => Seq("com.chuusai" %% "shapeless" % "2.3.10")
}

lazy val root =
Expand Down
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ import sbt._
object Dependencies {

object V {
val scala2 = "2.13.8"
val scala2 = "2.13.10"
val scala3 = "3.2.1"
val allScala = Seq(scala2, scala3)

val cassandraDriverVersion = "4.14.1"
val cassandraDriverVersion = "4.15.0"
}

import V._

val zioVersion = "2.0.0"
val zioVersion = "2.0.4"

val testContainersVersion = "0.40.8"
val testContainersVersion = "0.40.11"

val cassandraDependencies = Seq(
"com.datastax.oss" % "java-driver-core" % cassandraDriverVersion % "provided"
Expand All @@ -32,11 +32,11 @@ object Dependencies {
).map(_ % "it,test")

val testIntegrationDeps = Seq(
"org.wvlet.airframe" %% "airframe-log" % "22.6.1",
"org.slf4j" % "slf4j-jdk14" % "1.7.36",
"org.wvlet.airframe" %% "airframe-log" % "22.11.0",
"org.slf4j" % "slf4j-jdk14" % "2.0.3",
"com.dimafeng" %% "testcontainers-scala-core" % testContainersVersion,
"com.dimafeng" %% "testcontainers-scala-cassandra" % testContainersVersion,
"org.testcontainers" % "testcontainers" % "1.17.2"
"org.testcontainers" % "testcontainers" % "1.17.4"
).map(_ % "it")

}

0 comments on commit d3bd669

Please sign in to comment.