Skip to content

Commit

Permalink
Update scala-library to 2.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Nov 1, 2021
1 parent 757bfcf commit 407dee4
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@ import com.scalapenos.sbt.prompt._
import Dependencies._

ThisBuild / name := "effredis"
ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.6")
ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.7")

inThisBuild(List(
organization := "io.github.debasishg",
homepage := Some(url("https://github.com/debasishg/effRedis")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"debasishg",
"Debasish Ghosh",
"dghosh@acm.org",
url("https://debasishg.blogspot.com")
)
inThisBuild(
List(
organization := "io.github.debasishg",
homepage := Some(url("https://github.com/debasishg/effRedis")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"debasishg",
"Debasish Ghosh",
"dghosh@acm.org",
url("https://debasishg.blogspot.com")
)
)
)
))
)

// thanks https://github.com/profunktor/redis4cats/blob/master/build.sbt
promptTheme := PromptTheme(
Expand Down Expand Up @@ -52,11 +54,11 @@ val commonSettings = Seq(
Libraries.slf4jLog4j,
Libraries.slf4jApi,
Libraries.log4j,
Libraries.catsLaws % Test,
Libraries.catsTestKit % Test,
Libraries.munitCore % Test,
Libraries.munitScalacheckEffect % Test,
Libraries.munitCatsEffect % Test
Libraries.catsLaws % Test,
Libraries.catsTestKit % Test,
Libraries.munitCore % Test,
Libraries.munitScalacheckEffect % Test,
Libraries.munitCatsEffect % Test
),
resolvers += "Apache public" at "https://repository.apache.org/content/groups/public/",
scalacOptions ++= pred(
Expand Down Expand Up @@ -122,4 +124,4 @@ lazy val `effredis-tests` = project
.settings(parallelExecution in Test := false)
.enablePlugins(AutomateHeaderPlugin)
.dependsOn(`effredis-core`)
.dependsOn(`effredis-log4cats`)
.dependsOn(`effredis-log4cats`)

0 comments on commit 407dee4

Please sign in to comment.