Top "Sbt" questions

sbt is an open source build tool for Scala and Java projects, similar to Java's Maven or Ant.

How to check sbt version?

How do I check which version of sbt I'm running? I have the bash file set up that uses sbt-launch.…

sbt
Install sbt on ubuntu

I have installed sbt on Ubuntu. :~/bin/sbt/bin$ ls classes sbt sbt-launch.jar target jansi.jar sbt.bat sbt-launch-lib.…

scala debian ubuntu-12.04 sbt deb
ScalaTest in sbt: is there a way to run a single test without tags?

I know that a single test can be ran by running, in sbt, testOnly *class -- -n Tag Is there …

scala testing sbt scalatest
How to use sbt from behind proxy?

How do I configure sbt to use a proxy? For example, my build definition needs to connect to GitHub, specifying …

sbt
Debugging Scala code with simple-build-tool (sbt) and IntelliJ

What's the easiest way to debug Scala code managed by sbt using IntelliJ's built-in debugger? The documentation from "RunningSbt" from …

scala intellij-idea jetty sbt
How to specify JVM maximum heap size "-Xmx" for running an application with "run" action in SBT?

My application does large data arrays processing and needs more memory than JVM gives by default. I know in Java …

scala sbt
How to set heap size for sbt?

I am using SBT 0.12.0. I have read other answers on stack overflow and followed them, however none of them helps, …

scala sbt
How to build an Uber JAR (Fat JAR) using SBT within IntelliJ IDEA?

I'm using SBT (within IntelliJ IDEA) to build a simple Scala project. I would like to know what is the …

scala intellij-idea sbt meta-inf uberjar
How to create SBT project with IntelliJ Idea?

I just got started with Scala/LiftWeb/Sbt developing, and I'd like to import a Sbt project in IntelliJ Idea. …

scala intellij-idea lift sbt
How to see dependency tree in sbt?

I am trying to inspect the SBT dependency tree as described in the documentation: sbt inspect tree clean But I …

scala dependencies sbt