Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.8.2 #38

Closed
Closed
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: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.2
9b65a9df2a9c0755a437cbd1724022e52a757135
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 3.8.0
version = 3.8.2
runner.dialect = Scala213Source3
maxColumn = 100
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ inThisBuild(
)

lazy val lib = (project in file("lib"))
.settings(commonSettings*)
.settings(commonSettings *)
.settings(name := "endless-transaction")
.settings(
Compile / PB.targets := Seq(
Expand All @@ -78,18 +78,18 @@ lazy val lib = (project in file("lib"))

lazy val pekkoRuntime = (project in file("pekko"))
.dependsOn(lib)
.settings(commonSettings*)
.settings(commonSettings *)
.settings(libraryDependencies ++= Seq(`endless-runtime-pekko`) ++ pekkoProvided)
.settings(name := "endless-transaction-pekko")

lazy val akkaRuntime = (project in file("akka"))
.dependsOn(lib)
.settings(commonSettings*)
.settings(commonSettings *)
.settings(libraryDependencies ++= Seq(`endless-runtime-akka`) ++ akkaProvided)
.settings(name := "endless-transaction-akka")

lazy val example = (project in file("example"))
.settings(commonSettings*)
.settings(commonSettings *)
.dependsOn(lib % "test->test;compile->compile", pekkoRuntime, akkaRuntime)
.settings(
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
Expand Down Expand Up @@ -167,7 +167,7 @@ lazy val root = project
.in(file("."))
.dependsOn(example)
.aggregate(lib, pekkoRuntime, akkaRuntime, example, documentation)
.settings(commonSettings*)
.settings(commonSettings *)
.settings(crossScalaVersions := Nil)
.settings(publish / skip := true)
.settings(Compile / run / fork := true)
Expand Down
Loading