From 245eedf3947390b26b4d007616b2d2c78dd127b8 Mon Sep 17 00:00:00 2001 From: laderlappen Date: Tue, 5 Dec 2023 16:36:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Added=20variables=20for=20repeat?= =?UTF-8?q?ing=20version=20numbers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sbt | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/build.sbt b/build.sbt index 5046568..af968d5 100644 --- a/build.sbt +++ b/build.sbt @@ -2,27 +2,34 @@ scalaVersion := "3.3.1" scalacOptions ++= Seq("-Xmax-inlines", "50") +val circeVersion = "0.14.6" +val pureconfigVersion = "0.17.4" +val profunktorVersion = "1.5.2" +val client3Version = "3.9.1" +val langchain4jVersion = "0.23.0" +val xebiaVersion = "0.0.3" + libraryDependencies ++= Seq( - "io.circe" %% "circe-core" % "0.14.6", - "io.circe" %% "circe-parser" % "0.14.6", - "io.circe" %% "circe-generic" % "0.14.6", - "com.github.pureconfig" %% "pureconfig-core" % "0.17.4", - "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.17.4", - "dev.profunktor" %% "redis4cats-effects" % "1.5.2", - "dev.profunktor" %% "redis4cats-log4cats" % "1.5.2", + "io.circe" %% "circe-core" % circeVersion, + "io.circe" %% "circe-parser" % circeVersion, + "io.circe" %% "circe-generic" % circeVersion, + "com.github.pureconfig" %% "pureconfig-core" % pureconfigVersion, + "com.github.pureconfig" %% "pureconfig-cats-effect" % pureconfigVersion, + "dev.profunktor" %% "redis4cats-effects" % profunktorVersion, + "dev.profunktor" %% "redis4cats-log4cats" % profunktorVersion, "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M6", - "com.softwaremill.sttp.client3" %% "core" % "3.9.1", - "com.softwaremill.sttp.client3" %% "circe" % "3.9.1", - "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats" % "3.9.1", + "com.softwaremill.sttp.client3" %% "core" % client3Version, + "com.softwaremill.sttp.client3" %% "circe" % client3Version, + "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats" % client3Version, "de.brendamour" % "jpasskit" % "0.3.3", "com.outr" %% "scribe" % "3.12.2", "com.lihaoyi" %% "upickle" % "3.1.3", - "dev.langchain4j" % "langchain4j" % "0.23.0", - "dev.langchain4j" % "langchain4j-hugging-face" % "0.23.0", - "com.xebia" %% "xef-scala" % "0.0.3", - "com.xebia" % "xef-pdf" % "0.0.3", - "com.xebia" % "xef-reasoning-jvm" % "0.0.3", - "com.xebia" % "xef-openai" % "0.0.3", + "dev.langchain4j" % "langchain4j" % langchain4jVersion, + "dev.langchain4j" % "langchain4j-hugging-face" % langchain4jVersion, + "com.xebia" %% "xef-scala" % xebiaVersion, + "com.xebia" % "xef-pdf" % xebiaVersion, + "com.xebia" % "xef-reasoning-jvm" % xebiaVersion, + "com.xebia" % "xef-openai" % xebiaVersion, "ch.qos.logback" % "logback-classic" % "1.4.11", "org.apache.logging.log4j" % "log4j-core" % "2.21.1", "org.typelevel" %% "log4cats-slf4j" % "2.6.0",