question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can't import via sbt

See original GitHub issue

Using the “git method” seems to fail, and featherbed is not published on maven.

In the meantime I’ve cloned this repo and run sbt publishLocal to get it into my local .ivy2

It’d be good to get the basic import featherbed.Client statement for featherbed into the README as well, it was a little confusing to see it fully-qualified everywhere in the docs.

Issue Analytics

  • State:open
  • Created 7 years ago
  • Reactions:2
  • Comments:8 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
yeyancommented, Oct 27, 2016

After changing dependency from "io.github.finagle" %% "featherbed" %"0.2.1-SNAPSHOT" to "io.github.finagle" %% "featherbed-core" %"0.2.1-SNAPSHOT"

Featherbed-core is successfully fetched. The documentation on in Guide is bit confusing. It should change from

resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies ++= Seq(
  "io.github.finagle" %"featherbed_2.11" %"0.2.1-SNAPSHOT"
)

to

resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies ++= Seq(
  "io.github.finagle" %% "featherbed-core" %"0.2.1-SNAPSHOT"
)

By the way sbt can not find anything like featherbed-circle. Does that lib published to repo yet?

2reactions
Rydgelcommented, Oct 27, 2016

It’s circe, not circle.

Read more comments on GitHub >

github_iconTop Results From Across the Web

IntelliJ Cannot Import sbt Project - scala - Stack Overflow
14 Answers 14 · Open a terminal inside IDEA by pressing Alt F12 or use sbt shell · Run sbt - if it...
Read more >
sbt can not be imported via bsp in case of sbt = 1.4.0 org ...
Create simplest scala sbt project with sbt version = 1.4.0; Close it; Try to import it via File -> Project from existing sources...
Read more >
sbt Reference Manual — .sbt build with .scala files example
When the build file gets large enough, the first thing to factor out are resolvers and dependencies. project/Resolvers.scala. import sbt._ import ...
Read more >
Importing an sbt project into Intellij - Lagom Framework
§Import an sbt project ... After you have an sbt build – one you created yourself or from a template – follow these...
Read more >
IntelliJ Import Dependencies - Getting Started With build.sbt
In this Scala Tutorial, you will learn how to import external dependencies to be accessed in your Scala applications using build.sbt in ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found