sbt-assembly
sbt-assembly copied to clipboard
Deploy über-JARs. Restart processes. (port of codahale/assembly-sbt)
## Description Today, we currently have a single setter (`withAssemblyDirectory`) to configure the working directory for the assembly process. This defaults to a directory within `target/`. I propose adding ~~two~~...
I found an issue during JDK 15 -> 16 update for my project (my sbt-assembly version is 1.0.0): - one of the dependency JARs (JAXB impl) contained multi-release classes with...
I have a project where I'd like to exclude certain resources. The README mentions customizing the merge strategy for this, but AFAICS that is only invoked when the same resource...
Hi! I was trying to disable all logs except errors, but unfortunately `logLevel` doesn't seem to work. Here is what I've tried ``` logLevel in assembly := Level.Error logLevel in...
i have a multi project build where one of the sub-projects builds an assembly jar. it "depends" on the other sub-projects (with the .dependsOn(project1, project2) syntax. the other sub-projects all...
For a sample project with test classes in fat jar (sbt assembly version 0.14.14) ```scala lazy val coreIntegration = (project in file(".")) .settings(inConfig(Test)(baseAssemblySettings)) .settings(libraryDependencies +=Seq(("org.apache.spark" %% "spark-core" % "2.1.2" %...
This is really just to flag an interesting idea about minifying jar files using D8/R8 explored by Jake Wharton here [1] on Kotlin jar files where he achieved compression of...
I am trying to create a custom task that runs sbt assembly without running any tests. ```sbt lazy val assemblyWithoutTest = taskKey[sbt.File] assemblyWithoutTest := { assembly } assemblyWithoutTest.settings := {...