Questions tagged [sbteclipse]

Plugin for sbt to create Scala IDE for Eclipse project definitions.

73 questions
2
votes
1 answer

Failed javadoc downloads with sbteclipse when using with-source=true

When I invoke sbt and type eclipse with-source=true, I get a bunch of failed javadoc downloads: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: FAILED DOWNLOADS :: [warn] :: ^ see resolution messages for…
Neil
  • 24,551
  • 15
  • 60
  • 81
2
votes
1 answer

sbteclipse: Managed dependencies not found by eclipse

I created an sbt project. Calling sbt compile on the command line works well: $:[...]/Scala-Parser$ sbt compile [info] Loading global plugins from /home/[...]/.sbt/plugins [info] Loading project definition from [...]/Scala-Parser/project [info] Set…
Heinzi
  • 5,793
  • 4
  • 40
  • 69
1
vote
3 answers

Global sbteclipse plugin not found/loaded

I am having some serious difficulty installing sbteclipse as a global plugin. It seams like the global plugins are not being loaded. I created the .sbt directory and added a plugins directory. In the plugins directory I added the following…
Matthew Kemnetz
  • 845
  • 1
  • 15
  • 28
1
vote
0 answers

sbteclipse 1.0 not creating eclipse project with scala version 2.11.8 mentioned in build.sbt

Please find the version used : SBT version 1.0 Scala IDE 4.7 addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.3") I am trying to create a eclipse project but the project is getting created with scala version 2.12.3 where as my…
Vinay
  • 21
  • 1
1
vote
1 answer

Errors when creating a Scala project with sbt

When I create a Scala project with sbt I get the following error: ERROR org.eclipse.jgit.util.FS - caught exception in FS.readPipe() java.io.IOException: Cannot run program "bash" (in directory "C:\Users\xyz").... Though it will create the project…
TheQuestioner
  • 724
  • 2
  • 8
  • 13
1
vote
0 answers

Change default container in scalatra web application in eclipse

I am a total beginner with developing in scalatra, eclipse, sbt, web services, etc...coming from a proprietary SAP Abap world where everything is different. Recently I found interest in developing in scala and SAP opens its SAP Cloud Platform, so I…
Tapio Reisinger
  • 196
  • 1
  • 8
1
vote
1 answer

SBT eclipse command issue on multi-project

I imported an eclipse project from an sbt multi project. The sbt eclipse command did complete normally But the resulting eclipse project is full of errors as dependency between sub projects are not seen. I think the sbt plugin is failing on multi…
Serge B
  • 251
  • 1
  • 2
  • 3
1
vote
0 answers

Creating empty eclipse project using sbt

When I run eclipse in sbt with build.sbt having, name := "test" version := "0.1" scalaVersion := "2.10.5" It had build.sbt, project and target but, in tutorial I was following it was mentioned src/main/scala, src/main/java, ..test will be…
PKM15
  • 109
  • 1
  • 8
1
vote
0 answers

How do you tell sbt-eclipse to ignore (errors of) a very specific folder under /src

I have an infrastructure project that contains other projects as resources. (Because it compiles them on the fly). One of those contained projects is deliberately one that fails to compile. This makes the entire project show in eclipse as "with…
matanster
  • 15,072
  • 19
  • 88
  • 167
1
vote
2 answers

scala sbt compilation horror due to slowness and various issues

I am having a very horrible time coding in scala using sbt. I know compilation in scala is inherently slow as compared to java. I have tried both eclipse and intellij, to do development in scala + sbt, and both the well knows IDE sucks at the job.…
Saby
  • 99
  • 1
  • 7
1
vote
0 answers

sbt 0.13 and Eclipse integration - What is "eclipse" and why is it not inspectable?

I have a (Java-based) Play-2.3.10/sbt-0.13.9 project. In my global .sbt/0.13/plugins/plugins.sbt I have addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.4.0") I start sbt's console. I type inspect compile. I get [info] Task:…
Dirk Hillbrecht
  • 573
  • 5
  • 18
1
vote
0 answers

java.lang.IllegalStateException: Undefined setting 'eclipseSkipProject

While migrating my project ot Play 2.4, and sbt eclipse plugin 4.0.0, I get the following exception in my build file: java.lang.IllegalStateException: Undefined setting 'eclipseSkipProject in Scope( Select(ProjectRef("Some git url with…
Mikaël Mayer
  • 10,425
  • 6
  • 64
  • 101
1
vote
1 answer

How to successfully import a CrossProject sbt build into eclipse using sbt-eclipse

I've used sbt-eclipse in the past to successfully import a simple sbt project into eclipse. I'm now trying to leverage the CrossProject mechanism of sbt to use the Scala-JS environment (makes 2 subprojects in sbt--one for Javascript and one for JVM…
bjenkins001
  • 141
  • 1
  • 9
1
vote
2 answers

activator eclipse command shows sbt.ResolveException

I have created a new project by using activator new simple play-scala command.simple is my project name.I would like to import this project into my eclipse(ScalaIDE),so I used activator eclipse command but It showed the below Exception [error] Not a…
Manoj
  • 3,947
  • 9
  • 46
  • 84
1
vote
0 answers

sbteclipse main and test resources overlapping

Sbt-eclipse declares main/resources and test/resources as a eclipse src folder. If there are files with the same name in both folders the file from the test/resources overrides the one from main/resources. Example: I have two configuration files for…
numbnut
  • 11
  • 3