-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sbteclipse-plugin;4.0.0: not found #315
Comments
Hey. Which sbt version are you using? It looks like it tries to resolve Where is your |
I'm getting the same issue as well. I'm using the latest version of SBT with scala 2.11.7 . However I looked on maven central and it seems like the project no longer exists under com.typesafe, as far as I can tell. |
This sbt plugin is published to bintray under |
I have the same issue. I have just moved some projects over to a new machine on which I did a clean install of sbt 0.13.11. Using Scala 2.11.8 and referencing warn] :::::::::::::::::::::::::::::::::::::::::::::: Any suggestion on how to fix this would be much appreciated. These projects were compiling fine on my old machine. All my local ivy caches are empty on my new machine as it is a new build. I am not sure if that is why I didn't get this issue before. |
I am simply trying to use sbt eclipse to configure a project with the above settings (i.e. same versions mentioned by Dris101) and I get the same error. Is there a fallback? |
I have fixed the issue for my project by deleting |
Has anyone been able to resolve this issue? I'm trying to set up my machine so that sbteclipse is a global plugin, and not part of each project's source. At SBT_HOME, I have build.sbt and plugins/plugins.sbt. Here's
And here's
My projects use As stated by others, I'd like to configure sbteclipse globally, to be used in any project for generating Eclipse project files. Am I missing configuration? Am I misconfiguring? |
@aaronwitt27 your setup looks correct. What error are you getting? @Dris101 I noticed that you put |
Thanks to @Dris101 it builds now. So, in short:
Of course running the jar file shows me that the are libs missing !!!! |
In fact, once you try to build with sbt you will see how woeful the documentation actually is, cause you will very quickly understand the need for the assembly plugin. |
I also suddenly got |
I found a work-around: do not use any global version settings in ~.sbt/0.13/global.sbt -- neither scalaVersion nor sbtVersion -- as these will confuse the resolution process. This issue is likely to bite more people, so I think the sbtplugin should be made available for 2.11, and also perhaps the sbt documentation on global settings could be improved. (I don't really see the point of global default settings if the can't be overridden by a project's specific settings...) Here is a minimal test case that reproduced the problem on my machines (linux ubuntu 14.04, also tested correspondingly on win7):
|
Have you tried removing ~/.sbt/0.13/global.sbt ? |
Yeah, I got it working by removing |
remove ~/.sbt/boot/sbt.boot.lock and again try . It worked for me. |
while running sbt without any project setup on command line does give same issue.. |
I see this issue was resolved for you, but just in case it happens to somebody else I'd like to point out that the "project/plugins.sbt" is actually a folder named project inside your project's folder. This cost me about 10 minutes of confusion, because I'd put the plugins.sbt in my project's folder. Maybe that will help somebody else later. |
holy shit @rnevitt thank you! what a time sink |
Newer version of plugin worked for me:
|
For me following settings in the plugin.sbt worked. addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.8") |
I got this resolved as follows:
|
Hi, I just tried the plugin as mentioned in README to put that line into plugins.sbt. It's failure to run eclipse and got following information:
[info] Resolving jline#jline;2.12.1 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.sbteclipse#sbteclipse-plugin;4.0.0: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes.
[warn] com.typesafe.sbteclipse:sbteclipse-plugin:4.0.0 (scalaVersion=2.11, sbtVersion=0.13)
[warn]
[warn] Note: Unresolved dependencies path:
[warn] com.typesafe.sbteclipse:sbteclipse-plugin:4.0.0 (scalaVersion=2.11, sbtVersion=0.13) (/Users/kehongwei/.sbt/0.13/plugins.sbt#L1-2)
[warn] +- net.ruippeixotog:scala-scraper_2.11:1.0.1-SNAPSHOT
[trace] Stack trace suppressed: run last *:update for the full output.
error sbt.ResolveException: unresolved dependency: com.typesafe.sbteclipse#sbteclipse-plugin;4.0.0: not found
[error] Total time: 4 s, completed 2016-4-17 10:33:56
what should I'm going to do for fixing this?
Thanks,
Henry
The text was updated successfully, but these errors were encountered: