Skip to content

Commit

Permalink
trim dependency tree for core (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpollmeier authored Jul 30, 2024
1 parent 0c169fb commit 581c50b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ lazy val core = project
"com.lihaoyi" %% "ujson" % "3.3.1",
"com.github.luben" % "zstd-jni" % "1.5.6-3",
"org.slf4j" % "slf4j-api" % slf4jVersion,
"net.oneandone.reflections8" % "reflections8" % "0.11.7",
)
)

Expand All @@ -39,7 +38,10 @@ lazy val help = project
.dependsOn(core)
.settings(
name := "flatgraph-help",
libraryDependencies += "de.vandermeer" % "asciitable" % "0.3.2",
libraryDependencies ++= Seq(
"de.vandermeer" % "asciitable" % "0.3.2",
"net.oneandone.reflections8" % "reflections8" % "0.11.7",
)
)

lazy val formats = project
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.0
sbt.version=1.10.1

0 comments on commit 581c50b

Please sign in to comment.