File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
src/main/scala/com/baledung/doobie Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -559,7 +559,9 @@ lazy val scala3_libraries = (project in file("scala3-libraries"))
559
559
name := " scala3-libraries" ,
560
560
libraryDependencies ++= Seq (
561
561
" com.github.japgolly.clearconfig" %% " core" % " 3.1.0" ,
562
- " org.scalameta" %% " munit" % " 0.7.29" % Test
562
+ " org.scalameta" %% " munit" % " 0.7.29" % Test ,
563
+ " org.tpolecat" %% " doobie-core" % " 1.0.0-RC2" ,
564
+ " org.tpolecat" %% " doobie-postgres" % " 1.0.0-RC2"
563
565
)
564
566
)
565
567
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
### Relevant Articles:
3
3
- [ Scala App Configurations With Clarity Using ClearConfig] ( https://www.baeldung.com/scala/clearconfig )
4
4
- [ Introduction to MUnit] ( https://www.baeldung.com/scala/munit-introduction )
5
+ - [ Introduction to doobie – a JDBC Layer for Scala] ( https://www.baeldung.com/scala/doobie-intro )
Original file line number Diff line number Diff line change 1
- package com .baeldung . scala .doobie
1
+ package com .baledung .doobie
2
2
3
3
import cats .effect .{IO , IOApp }
4
4
import doobie .implicits ._
Original file line number Diff line number Diff line change 1
- package com .baeldung . scala .doobie
1
+ package com .baledung .doobie
2
2
3
3
import cats .effect .{IO , IOApp }
4
4
import doobie .implicits ._
You can’t perform that action at this time.
0 commit comments