0

In my local repo for scala/scala github project(here), jline dependency is set as 2.14.5. I change it to 3.1.3, but dependency is not resolved when I try to build the project.

How to get it resolved?

Mandroid
  • 6,200
  • 12
  • 64
  • 134

1 Answers1

3

That's because the groupId of jline 3.x has changed from jline to org.jline. Try with the following: val jlineDep = "org.jline" % "jline" % versionProps("jline.version")

Guillaume Nodet
  • 311
  • 1
  • 5