Skip to content

Commit

Permalink
Fixin deps for circe & play-json.
Browse files Browse the repository at this point in the history
  • Loading branch information
luksow committed Sep 13, 2024
1 parent f195bc3 commit 2e14a2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ lazy val playJsonSupport = crossProject(JSPlatform, JVMPlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("play-json"))
.dependsOn(core, enumeratumSupport, enumSupport, instances % "test -> test")
.dependsOn(core, enumSupport, enumeratumSupport % "test -> test", instances % "test -> test")
.settings(playJsonSettings *)
.settings(publishSettings *)
.settings(
Expand All @@ -362,7 +362,7 @@ lazy val circeSupport = crossProject(JSPlatform, JVMPlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("circe"))
.dependsOn(core, enumeratumSupport, enumSupport, instances % "test -> test")
.dependsOn(core, enumSupport, enumeratumSupport % "test -> test", instances % "test -> test")
.settings(circeSettings *)
.settings(crossBuildSettings *)
.settings(publishSettings *)
Expand Down

0 comments on commit 2e14a2a

Please sign in to comment.