Tagged Questions

sbt is a build tool for Scala projects that aims to do the basics well

learn more… | top users | synonyms

35
votes
4answers
8k views

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. Actually, I managed to import my project in two different ways: 1) with Maven. I created a ...
23
votes
1answer
326 views

Can not generate source code with SBT 0.11 from “Full Configuration”

Based on sbt 0.11.0 documentation available ("Common Tasks" wiki page and others) and after seeing how this is done in Scalaz SBT build and in Scalate SBT build I can't figure out why my simple ...
18
votes
3answers
4k views

Migrating from Maven to SBT

As you know, SBT is compatible with Maven in some way -- SBT recognizes simple Maven POMs and can use dependencies and repositories specified in them. However, SBT wiki says that, if inline dependency ...
13
votes
3answers
4k views

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 at http://code.google.com/p/simple-build-tool/wiki/RunningSbt lists commands for running ...
13
votes
5answers
3k views

How to use SBT (Simple Build Tool) with Google App Engine?

Has anybody tried to setup SBT to work with Google App Engine? I dream about using development server auto-reloading after source changes.
11
votes
3answers
2k views

how do I get sbt to use a local maven proxy repository (Nexus)?

I've got an sbt (Scala) project that currently pulls artifacts from the web. We'd like to move towards a corporate-standardized Nexus repository that would cache artifacts. From the Nexus ...
11
votes
1answer
1k views

Packaging and Deploying Scala Applications

What is the simplest way to package a Scala application for use on a desktop PC? I'm guessing that would be in the form of a jar file. At the moment I'm using SBT to compile and run programs I'd be ...
10
votes
2answers
722 views

SBT 0.10 tutorial

I'm very interested in Scala and have a great book on it, but I can't find any good tutorials on how to use SBT and their github page isn't very intuitive for people new to it. Any ideas?
10
votes
2answers
320 views

scala sbt how to get full traceback?

i'm using sbt 0.10.0 to compile a combination of java and scala files. when i run the program through "sbt run" it returns a nonzero error but doesn't show me a stacktrace, it simply fails silently ...
10
votes
1answer
499 views

How to call the scala interpreter in a Simple Build Tool project?

my scala program is using the compiler interface from scala.tools.nsc.interpreter.IMain. When I am compiling with scalac, everything works as expected. But when I compile with sbt it still compiles, ...
9
votes
0answers
127 views

How do I refresh updated Git dependency artifacts in SBT?

I've configured SBT (0.11.0) to pull in a GitHub project as a dependency, as per my answer on this question here. It works fine except that I can't seem to get SBT to re-compile my Git dependency ...
9
votes
2answers
1k views

SBT to Maven Converter

Since most IDEs are only able to import Maven projects, I'd like to generate a POM.xml from an SBT managed project, is there a better way to do it?
9
votes
2answers
577 views

What frameworks to use to bootstrap my first production scala project?

I am making my first foray into scala for a production app. The app is currently packaged as a war file. My plan is to create a jar file of the scala compiled artifacts and add that into the lib ...
8
votes
1answer
267 views

Is there somewhere a guide to SBT for non-Scala programmers?

Someday, I'd like to learn Scala. What I see about the language from people who like it is very encouraging. Today, though, is not that day. Today, I'd just like to make some changes to my team's ...
8
votes
1answer
238 views

running hprof from sbt

How do I run hprof from sbt? Are there different options to profile the CPU vs. the heap?
8
votes
3answers
411 views

How do I get color coded console output from SBT on Windows?

I'm using SBT (Simple Build Tool) to build my Scala projects on Windows. I've seen that one of my friends, that runs OSX, gets color coded output in his terminal windows when running SBT, but mine is ...
8
votes
3answers
1k views

Making stand-alone jar with Simple Build Tool

Is there a way to tell sbt to package all needed libraries (scala-library.jar) into the main package, so it is stand-alone? (static?)
7
votes
1answer
61 views

How to set the default project for SBT

Assume I have a build with three projects: A, B and C. If I am currently in the context of A and reload the build, it might change the context to be C after the reload. Because of this, I have to ...
7
votes
0answers
112 views

How can I run Android tests with sbt?

I developed for my application a small suite of Android tests written in Scala that uses the Robotium library. The suite is for all intents and purposes a standard Android JUnit test project and runs ...
7
votes
1answer
169 views

sbt 0.11 run task examples needed

My projects are still using sbt 0.7.7 and I find it very convenient to have utility classes that I can run from the sbt prompt. I can also combine this with properties that are separately maintained - ...
7
votes
1answer
158 views

How to make sbt `console` use -Yrepl-sync?

New in Scala 2.9.1 is the -Yrepl-sync option, which prevents each REPL line from being run in a new thread: scala -Yrepl-sync When I run console from sbt, how do I have it pass this in?
7
votes
1answer
234 views

Filtering resources in SBT

I am trying to setup SBT to compile an existing project which does not use the maven directory structure. I am using the full configuration and have set my javaSource & resourceDirectory settings ...
7
votes
1answer
537 views

Specifying the Jetty port in SBT 0.10

I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10 The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when ...
7
votes
2answers
230 views

What do the % and %% operators do when setting up SBT dependencies?

In Lift Web Framework, dependencies for Simple Build Tool (SBT) are specified in LiftProject.scala. That file includes this code: override def libraryDependencies = Set( "net.liftweb" ...
7
votes
1answer
353 views

Tell SBT to collect all my dependencies together

When building a web application SBT is able to collect all my jar dependencies into the WAR file. Is this possible to have SBT put all the jars I depend on in my non-web application into a directory ...
7
votes
1answer
886 views

Scala+IDEA: Pros and cons of sbt and fsc

I'm currently using IDEA's build mechanism with fsc for developing with Scala. It's still a bit slow and having to (re) start the compilation server is a pain. Many people here are suggesting SBT as a ...
7
votes
5answers
442 views

Learning Scala as a first VM/Compiled language - Workflow challenges

I'm coming from a PHP/Python/Javascript background, and recently became very interested in Scala - specifically Akka coming from the web standpoint. I'm having an extremely hard time though with ...
7
votes
1answer
1k views

How can I let sbt download the source of scala-library.jar?

I know if I add withSources when I define one dependency, sbt can download that sources jar file automatically. For example, val specs = "org.scala-tools.testing" % "specs_2.8.1" % "1.6.6" % ...
7
votes
2answers
265 views

How can I get colored output from Maven and SBT on Windows?

Is there a way to get colorized output from Maven and SBT on Windows?
7
votes
2answers
540 views

How to force interpreter show complete stack trace?

Is there any way to force Scala interpreter (started through SBT) to print complete stack trace. By default, less than 10 lines are displayed: scala> new CacheMonitoringClient ...
7
votes
2answers
355 views

Which CI server works with SBT?

I'm considering using SBT for a new scala project, but I'm not sure which CI server - hudson / cruise / whatever has support for it. Any ideas? I know SBT is a little Maven like, but I don't think it ...
7
votes
1answer
2k views

Changing Scala version in existing SBT project

How can I change Scala version in existing Simple Build Tool project? I would like SBT to check whether the system's Scala version is correct and if it is not the case then download it.
6
votes
1answer
70 views

SBT doc command: How to exclude java source files?

I'm using SBT 0.11.2 for a mixed Java/Scala project. I've realized that when I run the doc command from within SBT, it does not only create the scaladocs for the Scala source files in src/main/scala, ...
6
votes
2answers
238 views

Auto-reloading files in Scala/Lift/SBT .11?

In SBT .7, you could do ~jetty-run in order to get your files to auto compile and reload the web app whenever something changes. In SBT .11, You can do ~container:start which also re-compiles ...
6
votes
4answers
190 views

Parallel execution of tests

I've noticed that SBT is running my specs2 tests in parallel. This seems good, except one of my tests involves reading and writing from a file and hence fails unpredictably, e.g. see below. Are ...
6
votes
3answers
259 views

Why doesn't SBT 0.7.7 work correctly on my Linux system? (case details inside)

First of all, I'd like to ask to correct my question title if something better comes into your mind. Let's take a Lift REST web service example from the Simply Lift book by David Pollak here. If I ...
6
votes
2answers
324 views

Create script with classpath from SBT

I'd like to have SBT create a file and write the project's runtime full classpath (scala, managed and unmanaged libs, project classes) for a particular stage (in this case, only for compile). I'm ...
6
votes
2answers
163 views

sbt to exclude source directory

How do I config build.sbt to exclude src/main/java directory? I would like to put my Java sources there but I don't want to compile them. Also, can I exclude a file or group of files specify with RE. ...
6
votes
2answers
184 views

SBT: which files to put under version control?

I created a Scala project with SBT, referencing ScalaTest. Now it has this tree: ├───lib ├───lib_managed │ └───scala_2.9.0 │ └───compile ├───project │ ├───boot │ │ ├───other │ │ │ ...
6
votes
1answer
742 views

lift does not build with sbt?

i am following the steps for sbt 0.10 on assembla lift wiki and get the following error: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] ...
6
votes
1answer
122 views

How do I change the sbt colors?

I like the colours sbt produces but I would like to change them (blue on black doesn't work well for me). How do I do that?
6
votes
2answers
880 views

how to get a resource within scalatest w/ sbt

I have a file, data.xml in $SBT_PROJECT_HOME/src/test/resources/. How can I read that file into a new FileReader in my test, data.scala in $SBT_PROJECT_HOME/src/test/scala/? I've tried using ...
6
votes
3answers
781 views

Scala SBT: scala compiler version

I know that the scala swing libraries are present in scala 2.8: [info] Building project chart 1.0 against Scala 2.8.1 [info] using sbt.DefaultProject with sbt 0.7.4 and Scala 2.7.7 So how come ...
6
votes
2answers
836 views

Scala simple dummy project

Currently my whole work cycle is: edit foo.scala fsc foo.scala && scala -cp . FooMain But my project is getting bigger and I would like to split files, make unit tests, etc. But I'm too ...
5
votes
0answers
79 views

How to manage multiple interdependent modules with SBT and IntelliJ IDEA?

I'm developing several modules with dependencies among them, and would like to work with them all together in one IDEA project. I'm using sbt-idea to generate IDEA projects from the sbt build ...
5
votes
1answer
52 views

How does an sbt plugin get a path to a file in the plugin?

I have an sbt (0.11.2) plugin that needs to get a path to text files inside the plugin. How do I do that? baseDirectory, sourceDirectories etc are set to the base of the project that's including the ...
5
votes
2answers
137 views

Deploy Scala binaries without dependencies

Is there an easy way to copy a Scala Jar (~1MB) to a server and then have SBT pull in the dependencies (~40MB) it needs and run it? I've seen sbt-onejar and sbt-assembly, but these bundle all ...
5
votes
4answers
531 views

How to use scala-time?

somebody know scala-time? (https://github.com/jorgeortiz85/scala-time) Have no idea how to use it. I can download it (on linux) and run sbt but theres always the same errormessage: git clone ...
5
votes
2answers
241 views

Long build times with sbt android-plugin

I have created a demo application with the sbt android-plugin. The app is very simple. I have placed a MainActivity.java file under /src/main/java/my/package/ and when a button is pressed it takes ...
5
votes
2answers
178 views

SBT: Exclude class from Jar

I am converting a legacy jar project to SBT and for strange reasons that are not easily solved, this project comes with "javax/servlet/Servlet.class" inside it. So I need to somehow exclude this class ...

1 2 3 4 5 9