-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
58 lines (47 loc) · 1.54 KB
/
build.sbt
File metadata and controls
58 lines (47 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.6.4"
lazy val root = (project in file("."))
.settings(
name := "GistLLMJ",
fork := true,
assembly / mainClass := Some("Main"),
assembly / assemblyJarName := "gists.jar",
)
assembly / assemblyMergeStrategy := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}
lazy val catsDeps = Seq(
"org.typelevel" %% "cats-core" % "2.13.0",
"org.typelevel" %% "cats-effect" % "3.6.0"
)
lazy val javaFxDeps = Seq(
"org.openjfx" % "javafx-base",
"org.openjfx" % "javafx-graphics",
"org.openjfx" % "javafx-fxml",
"org.openjfx" % "javafx-controls",
"org.openjfx" % "javafx-media",
"org.openjfx" % "javafx-web",
"org.openjfx" % "javafx-swing"
).map(_ % "25-ea+10")
lazy val pureconfigDeps = Seq(
"com.github.pureconfig" %% "pureconfig-core",
"com.github.pureconfig" %% "pureconfig-generic-scala3"
).map(_ % "0.17.8")
lazy val circeDeps = Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % "0.14.12")
lazy val sttpDeps = Seq(
"com.softwaremill.sttp.client3" %% "cats" % "3.10.3"
)
lazy val fs2Deps = Seq(
"co.fs2" %% "fs2-core" % "3.12.0",
"co.fs2" %% "fs2-io" % "3.12.0"
)
lazy val langChainDeps = Seq(
"dev.langchain4j" % "langchain4j",
"dev.langchain4j" % "langchain4j-google-ai-gemini"
).map(_ % "1.0.0-beta2")
libraryDependencies ++= catsDeps ++ javaFxDeps ++ pureconfigDeps ++ circeDeps ++ sttpDeps ++ fs2Deps ++ langChainDeps