Skip to content

Commit 7dcb657

Browse files
committed
style: Get rid of operator notation in SBT
1 parent 9037b38 commit 7dcb657

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

build.sbt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ lazy val commonSettings = Seq(
2121
Test / publishArtifact := false
2222
)
2323

24-
lazy val root = (project in file("."))
24+
lazy val root = project
25+
.in(file("."))
2526
.aggregate(example, jvmExecution, jvmSsl, jvmSystem, pureconfig)
2627
.settings(
2728
name := "scala-server-toolkit",
@@ -45,20 +46,23 @@ lazy val example = project
4546
)
4647
)
4748

48-
lazy val jvmExecution = (project in file("jvm-execution"))
49+
lazy val jvmExecution = project
50+
.in(file("jvm-execution"))
4951
.settings(
5052
commonSettings,
5153
name := "scala-server-toolkit-jvm-execution",
5254
libraryDependencies += Dependencies.slf4jApi
5355
)
5456

55-
lazy val jvmSsl = (project in file("jvm-ssl"))
57+
lazy val jvmSsl = project
58+
.in(file("jvm-ssl"))
5659
.settings(
5760
commonSettings,
5861
name := "scala-server-toolkit-jvm-ssl"
5962
)
6063

61-
lazy val jvmSystem = (project in file("jvm-system"))
64+
lazy val jvmSystem = project
65+
.in(file("jvm-system"))
6266
.settings(
6367
commonSettings,
6468
name := "scala-server-toolkit-jvm-system"

0 commit comments

Comments
 (0)