Top "Sbt-assembly" questions

sbt-assembly is an sbt plugin for building a single JAR file of a project.

sbt-assembly: deduplication found error

I am not sure whether mergestrategy or exclude jars is the best option here. Any help with how do I …

scala sbt sbt-assembly
Why does Spark application fail with “ClassNotFoundException: Failed to find data source: kafka” as uber-jar with sbt assembly?

I'm trying to run a sample like StructuredKafkaWordCount. I started with the Spark Structured Streaming Programming guide. My code is …

scala apache-spark sbt sbt-assembly spark-structured-streaming
assembly-merge-strategy issues using sbt-assembly

I am trying to convert a scala project into a deployable fat jar using sbt-assembly. When I run my assembly …

scala deployment sbt executable-jar sbt-assembly
sbt assembly command not found

I'm trying to run sbt assembly. According to https://github.com/sbt/sbt-assembly , for sbt 0.13.6+ (I'm on 0.13.7) this should be …

sbt sbt-assembly
How to run sbt-assembly tasks from within IntelliJ IDEA?

Is it possible to run sbt-assembly from within IntelliJ IDEA? Also I read in the doc that one could add …

intellij-idea sbt sbt-assembly
SBT Assembly not working (not a valid command)

I have tried a lot of solutions that I could find related to this topic. Above all of them, sbt …

scala jar sbt sbt-assembly
How can I add unmanaged JARs in sbt-assembly to the final fat JAR?

My project has dependencies on a JAR file that isn't in Ivy, how can I include it directly in the …

scala sbt sbt-assembly
Getting sbt-assembly working

So 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-assembly
What are key differences between sbt-pack and sbt-assembly?

I've just stumbled upon the sbt-pack plugin. The development stream seems steady. It's surprising to me as I believed that …

sbt sbt-assembly
How to add "provided" dependencies back to run/test tasks' classpath?

Here'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-assembly