Questions tagged [scala-ide]

The Scala IDE is the Eclipse plugin for Scala

The Scala IDE is the Eclipse plugin for Scala.

The official homepage is scala-ide.org.

To raise bugs against the Scala IDE, see Assembla bug tracker.

If you wish to contribute to scala-ide, see scala-ide on github.

339 questions
0
votes
1 answer

Can Android SDK tools be installed in Scala IDE?

I have Scala IDE installed and I want to add the Android SDK Tools to it. I'd rather not download the ADT Bundle and have 2 different copies of Eclipse on my system. Can the SDK Tools be safely installed into Scala IDE, and how? Also will there be…
Aakash Jain
  • 1,963
  • 17
  • 29
0
votes
1 answer

Line wrapping long curried function definitions in Scala with Scala IDE

This is a simple question, but I'm curious about the "right" way to line-wrap curried functions in Scala. For example, suppose I have the moderately long line (if it's not long enough, you can pretend there are more parameters): def…
jonderry
  • 23,013
  • 32
  • 104
  • 171
0
votes
1 answer

InvalidStackFrameException After Calling Method via ObjectReference#invokeMethod

I am currently working on an Eclipse plugin which enhances the debugging possibilities. During the debugging session, I invoke a Scala method via com.sun.jdi.ObjectReference#invokeMethod like that: public int callMethod_Reactive_Level(final…
Simon
  • 4,103
  • 7
  • 28
  • 53
0
votes
1 answer

Toolbar icon for Create Scala Class for Scala-Plugin for Eclipse nowhere to be found

In my toolbar, I have my green 'C' button to create a new Java Class. But I have no option for creating a new Scala class (on my toolbar. I can still do it manually). I went to Window > Customize Perspective, and under Java Element Creation, I see…
Vince
  • 14,470
  • 7
  • 39
  • 84
0
votes
0 answers

Scala IDE plugin won't compile Scala code after conversion to Maven project and back

I am using the older Eclipse plug-in (not the standalone) 3.0.0.v-2_09 with Scala 2.9.3. I converted a project to Maven and then removed Maven nature. Now, when I clean / build the project, none of the Scala classes show up in the bin folder, but…
Walrus the Cat
  • 2,314
  • 5
  • 35
  • 64
0
votes
1 answer

How to run a ScalaTest form a different project in Eclipse?

I have two Scala projects open in Eclipse (the Scala IDE, more precisely). One project is the main project and the other is where I want to place my tests. If I place a test file (i.e. a class Test1 extends FlatSpec) in my main project, I can right…
gdiazc
  • 2,108
  • 4
  • 19
  • 30
0
votes
0 answers

Why is this Map not populating when I'm evaluating this code in Eclipse?

Below code should populate a Map but when I do a val test = userDataMap.get("test").get the value is null. Whis is this occuring ? This seems to be the correct way of populating a Map ? var userDataMap = Map.empty[String, List[String]] userDataMap…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
0
votes
1 answer

Typesafe-activator-eclipsified project has an endless list of dependencies in the scala ide

I have imported an typesafe-activator-eclipsified project into scala ide and I end up with an endless list of dependencies/jars in my ide which I find a little awkward to work with (see below). Is there a way to group all jars into one item (e.g.…
balteo
  • 23,602
  • 63
  • 219
  • 412
0
votes
2 answers

Using guest VM's Ivy cache directory for dependencies from Eclipse on host

I have a SBT project on VirtualBox virtual machine where I have installed SBT and have my project located. I run project through virtual machine with sbt, so all the external jars are located in /root/.ivy2/ in the VM. I have also mounted all VM…
codez
  • 1,381
  • 1
  • 18
  • 28
0
votes
3 answers

Scala IDE for .NET Developers

I write C# commerically and I am using Scala IDE ( Eclipse) at home. I want to be able to structure my project so I have a play component (.NET equivalent Assembly / VS Project) and another component which is the Core (Model, Services etc) How do I…
Blair Davidson
  • 901
  • 12
  • 35
0
votes
1 answer

Code not compiling (Eclipse Scala IDE)

If I create a new Scala project in the Eclipse Scala IDE, my code compiles and runs. However, when I import an existing project, my code doesn't compile (no class files are generated) and I get a NoClassDefFoundError in the console. Any ideas what…
MaVe
  • 1,715
  • 5
  • 21
  • 29
0
votes
1 answer

Scala eclipse-plugin Project unmanaged dependencies of referenced projects not on classpath after upgrade from 2.9 to 2.10

I recently tried to upgrade from Scala 2.9 to 2.10 and ran into the following difficulties: I have two scala eclipse-plugin projects. The first one has some unmanaged libraries on it's build path. This project compiles and runs fine. The second…
bnord
  • 385
  • 1
  • 12
0
votes
2 answers

How to run play2 web application from Eclipse ( ScalaIDE plugin )

I am using Eclipse Juno with Scala plugin. As of now to work with play2 web application I have to first fire terminal and execute play debug ~run ( or play run if I don't want to debug ), and then I can work in Eclipse and after each save play does…
Rakesh Juyal
  • 35,919
  • 68
  • 173
  • 214
0
votes
1 answer

How to run a java program upon compilation of class

I have a java jar I want to invoke when a class is compiled using the Eclipse IDE : java -jar myjar.jar args1 args2 Is there a java lib I can use for this or perhaps use a Scala macro ?
blue-sky
  • 51,962
  • 152
  • 427
  • 752
0
votes
0 answers

STS+Scala Plugin compatiblity / project build issue

Have a project in STS e3.8(Spring Batch application), recently added some scala logic and installed scala plugin(e3.8), and added Scala nature to the project. Now i'm facing the problem that sts doesn't build project automatically. I have to run mvn…
magulla
  • 499
  • 1
  • 9
  • 22