Ben McCann
Ben McCann
It's available from the following location: https://dl.bintray.com/sbt/sbt-plugin-releases/
Here's the same bug for gradle: https://discuss.gradle.org/t/eclipse-plugin-does-not-set-scala-version/17852
Why do you need the plugin or it's sources on the project classpath?
Would you mind also pasting here a full example of what is added to the `.classpath` file by this code for one SBT plugin?
What version of sbteclipse are you using? Can you please be sure to test with 5.2.2?
I'm not sure I understand the problem that you're having. Can you post the code for what you're trying to do, what you expect to happen, and what actually happens?
What do you mean by "generate heat"? Are you asking where the class is used? [Here's one place](https://github.com/typesafehub/sbteclipse/blob/master/src/main/scala/com/typesafe/sbteclipse/core/EclipsePlugin.scala#L47) You're welcome to submit a PR to make that class public if...
You could also move the setting method back to package.scala. Or you could simply define your own in your code since it's only a few lines to copy
I just simplified the method, so it's only a few lines if you want to copy it into your own project: ``` def setting[A](key: SettingKey[A], state: State): A = key.get(structure(state).data).getOrElse...
I think this issue is fixed now? Also raised here: https://github.com/typesafehub/sbteclipse/issues/188