-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
246 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ inThisBuild( | |
// scalacOptions += "-Ysafe-init", | ||
// scalacOptions += "-Werror", // <=> "-Xfatal-warnings" | ||
scalacOptions += "-Dquill.macro.log=false", // disable quill macro logs // TODO https://github.com/zio/zio-protoquill/issues/470, | ||
scalacOptions ++= Seq("-Xmax-inlines", "50") | ||
scalacOptions ++= Seq("-Xmax-inlines", "50") // increase above 32 (https://github.com/circe/circe/issues/2162) | ||
) | ||
) | ||
|
||
|
@@ -104,15 +104,19 @@ lazy val D = new { | |
val zioConcurrent: ModuleID = "dev.zio" %% "zio-concurrent" % V.zio | ||
val zioHttp: ModuleID = "dev.zio" %% "zio-http" % V.zioHttp | ||
val zioKafka: ModuleID = "dev.zio" %% "zio-kafka" % V.zioKafka excludeAll ( | ||
ExclusionRule("dev.zio", "zio_3"), ExclusionRule("dev.zio", "zio-streams_3") | ||
ExclusionRule("dev.zio", "zio_3"), | ||
ExclusionRule("dev.zio", "zio-streams_3") | ||
) | ||
val zioCatsInterop: ModuleID = "dev.zio" %% "zio-interop-cats" % V.zioCatsInterop | ||
val zioMetricsConnectorMicrometer: ModuleID = "dev.zio" %% "zio-metrics-connectors-micrometer" % V.zioMetricsConnector | ||
val tapirPrometheusMetrics: ModuleID = "com.softwaremill.sttp.tapir" %% "tapir-prometheus-metrics" % V.tapir | ||
val micrometer: ModuleID = "io.micrometer" % "micrometer-registry-prometheus" % V.micrometer | ||
val micrometerPrometheusRegistry = "io.micrometer" % "micrometer-core" % V.micrometer | ||
val scalaUri = Seq( | ||
"io.lemonlabs" %% "scala-uri" % V.scalaUri exclude ("org.typelevel", "cats-parse_3"), // Exclude cats-parse to avoid deps conflict | ||
"io.lemonlabs" %% "scala-uri" % V.scalaUri exclude ( | ||
"org.typelevel", | ||
"cats-parse_3" | ||
), // Exclude cats-parse to avoid deps conflict | ||
"org.typelevel" % "cats-parse_3" % "1.0.0", // Replace with version 1.0.0 | ||
) | ||
|
||
|
@@ -905,7 +909,7 @@ lazy val cloudAgentServer = project | |
Docker / maintainer := "[email protected]", | ||
Docker / dockerUsername := Some("hyperledger"), // https://github.com/hyperledger | ||
Docker / dockerRepository := Some("ghcr.io"), | ||
dockerExposedPorts := Seq(8080, 8085, 8090), | ||
dockerExposedPorts := Seq(8085, 8090), | ||
// Official docker image for openjdk 21 with curl and bash | ||
dockerBaseImage := "openjdk:21-jdk", | ||
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.