Skip to content

Commit

Permalink
attempted fix at build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
ComFreek committed Aug 17, 2023
1 parent de6a0a2 commit 075833d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,14 @@ def mmtProjectsSettings(nameStr: String) = commonSettings(nameStr) ++ Seq(

install := {},
deploy := Utils.deployPackage("main/" + nameStr + ".jar").value,
testSetup := utils.value.testSetup
testSetup := utils.value.testSetup,

libraryDependencySchemes ++= Seq(
// see https://github.com/circe/circe-iteratee/issues/261
"io.circe" %% "circe-jawn" % VersionScheme.Always,
// see https://github.com/sbt/sbt/issues/7140#issuecomment-1464119328
"io.circe" % "circe-jawn_2.13" % VersionScheme.Always
)
)

// =================================
Expand Down

0 comments on commit 075833d

Please sign in to comment.