Skip to content

Commit

Permalink
minor sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-ciocirlan committed May 14, 2024
1 parent 3a6fd02 commit 0addb6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ val tests = Seq(
"com.softwaremill.sttp.client3" %% "zio-json" % sttpZioJsonVersion % Test
)

//val emailValidator = Seq("commons-validator" % "commons-validator" % emailValidatorVersion)

lazy val rootProject = (project in file(".")).settings(
Seq(
name := "zio-http-htmx",
version := "0.1.0-SNAPSHOT",
organization := "com.softwaremill",
organization := "com.rockthejvm",
scalaVersion := currentScalaVersion,
Test / fork := true,
scalacOptions ++= Seq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ class ContactService(contactsRepository: ContactsRepository) {
}

object ContactService {
val live: ZLayer[ContactsRepository, Nothing, ContactService] =
val live: ZLayer[ContactsRepository, Nothing, ContactService] =
ZLayer.derive[ContactService]
}

0 comments on commit 0addb6f

Please sign in to comment.