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
6 changes: 3 additions & 3 deletions examples/integration-test/build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
lazy val scalatest = "org.scalatest" %% "scalatest" % "3.2.20"

scalaVersion := "3.8.2"
scalaVersion := "3.8.3"
name := "scala-example"
organization := "earthly.dev"
version := "1.0"

libraryDependencies ++= Seq(
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC12",
"org.tpolecat" %% "doobie-scalatest" % "1.0.0-RC12" % "test"
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC12",
"org.tpolecat" %% "doobie-scalatest" % "1.0.0-RC12" % "test"
)

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion examples/scala/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build:
FROM +deps
COPY src src
RUN sbt assembly
SAVE ARTIFACT target/scala-3.8.2 bin AS LOCAL build/bin
SAVE ARTIFACT target/assembly bin AS LOCAL build/bin

docker:
COPY +build/bin build/bin
Expand Down
4 changes: 3 additions & 1 deletion examples/scala/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
scalaVersion := "3.8.2"
scalaVersion := "3.8.3"
name := "scala-example"
organization := "earthly.dev"
version := "1.0"

assembly / assemblyOutputPath := file("target/assembly/scala-example-assembly-1.0.jar")

libraryDependencies += "org.typelevel" %% "cats-core" % "2.13.0"
Loading