Skip to content

Commit 83c8f2d

Browse files
committed
Bump Scala version
1 parent 2cd9b89 commit 83c8f2d

File tree

2 files changed

+9
-21
lines changed

2 files changed

+9
-21
lines changed

build.sbt

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name := "pekko-tutorial"
44

55
version := "1.0"
66

7-
scalaVersion := "2.13.17"
7+
scalaVersion := "2.13.18"
88

99
val pekkoVersion = "1.3.0"
1010
val pekkoHTTPVersion = "1.3.0"
@@ -22,7 +22,7 @@ val awsClientVersion = "2.25.32"
2222
val gatlingVersion = "3.14.9"
2323
val circeVersion = "0.14.14"
2424

25-
val langchain4jVersion = "1.8.0"
25+
val langchain4jVersion = "1.9.0"
2626

2727
libraryDependencies ++= Seq(
2828
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.2.0",
@@ -65,7 +65,7 @@ libraryDependencies ++= Seq(
6565
"org.apache.pekko" %% "pekko-connectors-sse" % pekkoConnectorVersion,
6666
"org.apache.pekko" %% "pekko-connectors-file" % pekkoConnectorVersion,
6767
// With the latest sshj lib explicitly included, we get a more robust behaviour on "large" data sets in SftpEcho
68-
"com.hierynomus" % "sshj" % "0.39.0",
68+
"com.hierynomus" % "sshj" % "0.40.0",
6969
"org.apache.pekko" %% "pekko-connectors-xml" % pekkoConnectorVersion,
7070
"org.apache.pekko" %% "pekko-connectors-ftp" % pekkoConnectorVersion,
7171
"org.apache.pekko" %% "pekko-connectors-elasticsearch" % pekkoConnectorVersion,
@@ -143,11 +143,11 @@ libraryDependencies ++= Seq(
143143
"dev.langchain4j" % "langchain4j-anthropic" % langchain4jVersion,
144144

145145
// LangChain4j PgVector extension
146-
"dev.langchain4j" % "langchain4j-pgvector" % "1.8.0-beta15",
146+
"dev.langchain4j" % "langchain4j-pgvector" % "1.9.0-beta16",
147147

148148
// LangChain4j embedding models
149-
"dev.langchain4j" % "langchain4j-embeddings-bge-small-en-v15-q" % "1.8.0-beta15",
150-
"dev.langchain4j" % "langchain4j-embeddings-all-minilm-l6-v2-q" % "1.8.0-beta15",
149+
"dev.langchain4j" % "langchain4j-embeddings-bge-small-en-v15-q" % "1.9.0-beta16",
150+
"dev.langchain4j" % "langchain4j-embeddings-all-minilm-l6-v2-q" % "1.9.0-beta16",
151151

152152
// CLI output formatting
153153
"xyz.matthieucourt" %% "layoutz" % "0.5.0",
@@ -180,15 +180,4 @@ enablePlugins(GatlingPlugin)
180180
// Needed as long as "scala-java8-compat" is in the dependencies
181181
// https://eed3si9n.com/sbt-1.5.0
182182
// https://www.scala-lang.org/blog/2021/02/16/preventing-version-conflicts-with-versionscheme.html
183-
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-java8-compat" % "always"
184-
185-
// For Scalafix basic stuff to work
186-
libraryDependencies +=
187-
"ch.epfl.scala" %% "scalafix-core" % _root_.scalafix.sbt.BuildInfo.scalafixVersion % ScalafixConfig
188-
189-
inThisBuild(
190-
List(
191-
semanticdbEnabled := true,
192-
semanticdbVersion := scalafixSemanticdb.revision
193-
)
194-
)
183+
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-java8-compat" % "always"

project/plugins.sbt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.3")
2-
//The now built in dependencyTree task is usually enough
3-
//https://www.scala-sbt.org/1.x/docs/sbt-1.4-Release-Notes.html#sbt-dependency-graph+is+in-sourced
1+
// The built-in "dependencyTree" task is usually enough
2+
// https://www.scala-sbt.org/1.x/docs/sbt-1.4-Release-Notes.html#sbt-dependency-graph+is+in-sourced
43
//addDependencyTreePlugin
54

65
// https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin

0 commit comments

Comments
 (0)