sbt is an open source build tool for Scala and Java projects, similar to Java's Maven or Ant.
My project has dependencies on a JAR file that isn't in Ivy, how can I include it directly in the …
scala sbt sbt-assemblySo thus far I've been compiling my Scala project with SBT (via Typesafe stack). I want to run the code …
scala jar sbt typesafe-stack sbt-assemblyI have a multi-module build, and would like to run tests for different sub-projects independently. Is there a way to …
sbtI've just stumbled upon the sbt-pack plugin. The development stream seems steady. It's surprising to me as I believed that …
sbt sbt-assemblyHere's an example build.sbt: import AssemblyKeys._ assemblySettings buildInfoSettings net.virtualvoid.sbt.graph.Plugin.graphSettings name := "scala-app-template" version := "0.1" scalaVersion := "2.9.3" val …
scala sbt sbt-assemblyI'm trying to compile my project to Scala 2.10 and 2.11 so that I can release versions for both scala versions, but …
scala sbt cross-compiling scala-2.11Historically I have used Ant+Ivy or Maven for building my Java projects. I'm now looking at non-xml based solutions. …
java build sbtEDIT : it works if the file is in src/test/scala/tests/ but not in src/main/scala/mypackage/ Why ? …
scala intellij-idea sbt scalatestI'm building an Apache Spark application in Scala and I'm using SBT to build it. Here is the thing: when …
intellij-idea apache-spark sbt sbt-assembly