sbt assembly command not found

后端 未结 6 1679
忘掉有多难
忘掉有多难 2021-01-01 09:03

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 included automatically for anything with

6条回答
  •  鱼传尺愫
    2021-01-01 09:44

    lazy val root = (project in file(".")).
      settings(commonSettings: _*).
      settings(
        assemblySettings ++ Seq(
        jarName in assembly := "roobricks-spark.jar",
        test in assembly := {}
      ).
      enablePlugins(AssemblyPlugin)
    

    can you once with this.

提交回复
热议问题