Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import xerial.sbt.Sonatype.sonatypeCentralHost

val commonSettings = Seq(
organization := "io.toolsplus",
scalaVersion := "3.3.6",
scalaVersion := "3.3.7",
versionScheme := Some("early-semver"),
resolvers ++= Seq(
Resolver.typesafeRepo("releases"),
Expand Down
13 changes: 7 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ object Dependencies {

object Version {
val cats = "2.13.0"
val nimbusJoseJwt = "10.5"
val bouncyCastle = "1.81"
val circe = "0.14.14"
val nimbusJoseJwt = "10.8"
val bouncyCastle = "1.83"
val circe = "0.14.15"
val scalaTest = "3.2.19"
val scalaCheck = "1.19.0"
val scalaTestPlusScalaCheck = "3.2.18.0"
val scalaTestPlusScalaCheck = "3.2.19.0"
val scalaCheckDateTime = "0.7.0"
val circeOptics = "0.15.1"
}

object Library {
Expand All @@ -38,11 +39,11 @@ object Library {
val bouncyCastle = "org.bouncycastle" % "bcpg-jdk18on" % Version.bouncyCastle
val circeCore = "io.circe" %% "circe-core" % Version.circe
val circeParser = "io.circe" %% "circe-parser" % Version.circe
val circeOptics = "io.circe" %% "circe-optics" % "0.15.1"
val circeOptics = "io.circe" %% "circe-optics" % Version.circeOptics
val scalaTest = "org.scalatest" %% "scalatest" % Version.scalaTest
val scalaCheck = "org.scalacheck" %% "scalacheck" % Version.scalaCheck
val scalaTestPlusCheck =
"org.scalatestplus" %% "scalacheck-1-17" % Version.scalaTestPlusScalaCheck
"org.scalatestplus" %% "scalacheck-1-19" % Version.scalaTestPlusScalaCheck
val scalaCheckDateTime =
"com.47deg" %% "scalacheck-toolbox-datetime" % Version.scalaCheckDateTime
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.11.7
sbt.version = 1.12.4
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")