Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It looks like <a href="https://github.com/typesafehub/sbteclipse" rel="noreferrer">sbteclipse requires SBT 0.13.0</a>, and you are using version 0.12.4. You can specify the SBT version by following the directions on <a href="http://www.scala-sbt.org/0.13.0/docs/Getting-Started/Hello.html" rel="noreferrer">this page</a>.</p> <p>Some other notes: You probably want to use Scala 2.10.3, not 2.10.2.</p> <p>Also, it's strange to specify <code>scalaHome</code>; usually SBT will automatically fetch the needed Scala jars for you. So to bootstrap a Scala environment, all you need to have installed are SBT and a JDK.</p> <p>EDIT: (addressing comment below): When you build code with SBT, you may actually use two different versions of Scala. There is the version for SBT (what version of Scala the build system runs on), and the version for the code in your project (what version of Scala your code will run on).</p> <p>The Scala version for SBT is determined by the SBT version you use. If you use 0.12.4, SBT will run on Scala 2.9.3. If you use 0.13.0, SBT will run on Scala 2.10.3. You control the SBT version by following <a href="http://www.scala-sbt.org/0.13.0/docs/Getting-Started/Hello.html#setting-the-sbt-version" rel="noreferrer">these instructions</a>.</p> <p>To control the version of Scala your project will run on, you can set <code>scalaVersion</code> in <code>&lt;projectRoot&gt;/build.sbt</code>.</p> <p>So, you're getting that error because you're using SBT 0.12.4, which uses Scala 2.9.3. SBT tries to find the sbteclipse plugin for 2.9.3, but it doesn't exist because it requires SBT 0.13.0 (=> Scala 2.10.3).</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload