Skip to content

Commit

Permalink
review: move jna and jline to Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lemastero committed Sep 22, 2020
1 parent 06e9603 commit 832e38b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ val commonSettings = Seq(
val malletDeps = Seq(
Dependencies.scopt
).flatten ++ Seq(
"org.jline" % "jline" % "3.16.0",
"net.java.dev.jna" % "jna" % "5.6.0"
Dependencies.jline,
Dependencies.jna
)

val dep = {
Expand Down
6 changes: 5 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,12 @@ object Dependencies {
"commons-io" % "commons-io" % "2.8.0"
)

val jline = "org.jline" % "jline" % "3.16.0"

val jna = "net.java.dev.jna" % "jna" % "5.6.0"

val dependencies = Seq(
"org.jline" % "jline" % "3.16.0",
jline,
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
"org.scala-sbt.ipcsocket" % "ipcsocket" % "1.1.0",
"com.google.guava" % "guava" % "29.0-jre",
Expand Down

0 comments on commit 832e38b

Please sign in to comment.