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
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lazy val lib = project
.settings(
libraryDependencies ++= Seq(
playTest % Test,
"io.flow" %% "lib-util" % "0.2.76",
"io.flow" %% "lib-util" % "0.2.78",
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test,
),
)
Expand All @@ -61,13 +61,13 @@ lazy val api = project
ws,
"org.projectlombok" % "lombok" % "1.18.42" % Provided,
"com.sendgrid" % "sendgrid-java" % "4.10.3",
"io.flow" %% "lib-play-play29" % "0.8.74",
"io.flow" %% "lib-event-sync-play29" % "0.7.38",
"io.flow" %% "lib-postgresql-play29" % "0.3.40",
"io.flow" %% "lib-postgresql-play-play29" % "0.6.59" % Runtime, // Module
"io.flow" %% "lib-log-play29" % "0.2.75",
"io.flow" %% "lib-usage-play29" % "0.3.34",
"io.flow" %% "lib-test-utils-play29" % "0.3.1" % Test,
"io.flow" %% "lib-play-play29" % "0.8.78",
"io.flow" %% "lib-event-sync-play29" % "0.7.41",
"io.flow" %% "lib-postgresql-play29" % "0.3.43",
"io.flow" %% "lib-postgresql-play-play29" % "0.6.63" % Runtime, // Module
"io.flow" %% "lib-log-play29" % "0.2.79",
"io.flow" %% "lib-usage-play29" % "0.3.38",
"io.flow" %% "lib-test-utils-play29" % "0.3.5" % Test,
"net.sourceforge.htmlcleaner" % "htmlcleaner" % "2.29",
"org.postgresql" % "postgresql" % "42.7.4",
"org.apache.commons" % "commons-text" % "1.15.0",
Expand Down Expand Up @@ -97,8 +97,8 @@ lazy val www = project
"org.webjars" % "bootstrap" % "3.4.1" % Runtime,
"org.webjars" % "jquery" % "3.7.1" % Runtime,
"org.webjars" % "bootstrap-social" % "5.0.0" % Runtime,
"io.flow" %% "lib-play-play29" % "0.8.74",
"io.flow" %% "lib-test-utils-play29" % "0.3.1" % Test,
"io.flow" %% "lib-play-play29" % "0.8.78",
"io.flow" %% "lib-test-utils-play29" % "0.3.5" % Test,
),
scalacOptions ++= allScalacOptions,
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1")

resolvers += "Flow Plugins" at "https://flow.jfrog.io/flow/plugins-release/"

addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.74")
addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.76")

// Resolve scala-xml version dependency mismatch, see https://github.com/sbt/sbt/issues/7007
ThisBuild / libraryDependencySchemes ++= Seq(
Expand Down