Skip to content

Commit

Permalink
Update build config
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Jul 24, 2024
1 parent 46663ee commit 369c4cc
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/buildConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14775,7 +14775,21 @@
},
"tests":"compile-only",
"sourcePatches":[

{
"path":"examples/src/main/scala/com/geirolz/example/app/AppMain.scala",
"pattern":".withLogger(Slf4jLogger.create[IO])",
"replaceWith":".withLogger(_ => Slf4jLogger.create[IO])"
},
{
"path":"examples/src/main/scala/com/geirolz/example/app/AppConfig.scala",
"pattern":"case class HttpServerConfig(port: Port, host: Hostname)",
"replaceWith":"import AppConfig.given\ncase class HttpServerConfig(port: Port, host: Hostname) derives Encoder"
},
{
"path":"examples/src/main/scala/com/geirolz/example/app/AppConfig.scala",
"pattern":"case class KafkaBrokerSetting(host: Hostname)",
"replaceWith":"case class KafkaBrokerSetting(host: Hostname) derives Encoder"
}
]
}
},
Expand Down Expand Up @@ -16860,11 +16874,11 @@
}
},
"java":{
"version":"17"
"version":"21"
},
"sbt":{
"commands":[

"set scala/Test/unmanagedSources/excludeFilter ~= { _ || \"PlotSpec.scala\" } "
],
"options":[

Expand Down Expand Up @@ -35889,8 +35903,13 @@
]
},
"tests":"compile-only",
"sourceVersion":"3.5",
"sourcePatches":[

{
"path":"src/main/scala/com/sageserpent/kineticmerge/core/CodeMotionAnalysis.scala",
"pattern":"@tailrec",
"replaceWith":""
}
]
}
},
Expand Down

0 comments on commit 369c4cc

Please sign in to comment.