@@ -51,7 +51,7 @@ ThisBuild / githubWorkflowPublish := Seq(WorkflowStep.Sbt(List("docker:publish")
51
51
52
52
Test / fork := true
53
53
54
- missinglinkExcludedDependencies in ThisBuild += moduleFilter(
54
+ ThisBuild / missinglinkExcludedDependencies += moduleFilter(
55
55
organization = " org.slf4j" ,
56
56
name = " slf4j-api"
57
57
)
@@ -74,14 +74,14 @@ val commonSettings = List(
74
74
" org.typelevel" %% " cats-effect" % " 2.3.1" ,
75
75
" org.typelevel" %% " cats-tagless-macros" % " 0.12" ,
76
76
" co.fs2" %% " fs2-core" % " 2.5.0" ,
77
- " com.github.valskalla" %% " odin-core" % " 0.10 .0" ,
77
+ " com.github.valskalla" %% " odin-core" % " 0.11 .0" ,
78
78
" io.circe" %% " circe-core" % " 0.13.0" ,
79
79
" com.github.julien-truffaut" %% " monocle-macro" % " 2.1.0" ,
80
80
" com.disneystreaming" %% " weaver-framework" % " 0.5.1" % Test ,
81
81
" com.disneystreaming" %% " weaver-scalacheck" % " 0.5.1" % Test
82
82
) ++ compilerPlugins,
83
83
testFrameworks += new TestFramework (" weaver.framework.TestFramework" ),
84
- skip in publish := true
84
+ publish / skip := true
85
85
)
86
86
87
87
lazy val gitlab = project
@@ -103,7 +103,7 @@ lazy val gitlab = project
103
103
lazy val core = project.settings(commonSettings).settings(name += " -core" )
104
104
105
105
// workaround for docker not accepting + (the default separator in sbt-dynver)
106
- dynverSeparator in ThisBuild := " -"
106
+ ThisBuild / dynverSeparator := " -"
107
107
108
108
val installDhallJson =
109
109
ExecCmd (
@@ -151,10 +151,9 @@ lazy val pitgull =
151
151
" io.circe" %% " circe-generic-extras" % " 0.13.0" ,
152
152
" io.estatico" %% " newtype" % " 0.4.4" ,
153
153
" io.scalaland" %% " chimney" % " 0.6.1" ,
154
- " org.typelevel" %% " cats-mtl-core" % " 0.7.1" ,
155
154
" io.chrisdavenport" %% " cats-time" % " 0.3.4" ,
156
- " com.github.valskalla" %% " odin-core" % " 0.10 .0" ,
157
- " com.github.valskalla" %% " odin-slf4j" % " 0.10 .0" ,
155
+ " com.github.valskalla" %% " odin-core" % " 0.11 .0" ,
156
+ " com.github.valskalla" %% " odin-slf4j" % " 0.11 .0" ,
158
157
" io.github.vigoo" %% " prox" % " 0.5.2"
159
158
)
160
159
)
0 commit comments