1 parent 08673b8 commit 8055b2dCopy full SHA for 8055b2d
1 file changed
project/DependenciesPlugin.scala
@@ -6,6 +6,9 @@ object DependenciesPlugin extends AutoPlugin {
6
7
object autoImport {
8
implicit class DependencyOps(p: Project) {
9
+ val circeYamlVersion =
10
+ "0.16.1"
11
+
12
def withCats: Project =
13
p
14
.settings(libraryDependencies += "org.typelevel" %% "cats-core" % "2.13.0")
@@ -28,7 +31,7 @@ object DependenciesPlugin extends AutoPlugin {
28
31
def withYaml: Project =
29
32
p.settings(
30
33
libraryDependencies ++= Seq(
- "io.circe" %% "circe-yaml" % "0.15.1"
34
+ "io.circe" %% "circe-yaml" % circeYamlVersion
35
)
36
37
}
0 commit comments