作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在最近流行的sbt应用程序https://github.com/databricks/reference-apps中,我找到了一条需要我执行以下操作的行
import AssemblyKeys._
最佳答案
The other answer by @mfirry几乎可以回答构建(定义)的哪些部分带来了import AssemblyKeys._
。就是sbt-assembly插件(引用the docs of the plugin):
Create a fat JAR of your project with all of its dependencies.
sbt-assembly
插件的目的,即打包所有内容并提供单个应用程序jar,以便Spark可以使用。请参阅Apache Spark文档中的
Standalone Applications,以了解独立情况(无集群环境):
For sbt to work correctly, we’ll need to layout SimpleApp.scala and simple.sbt according to the typical directory structure. Once that is in place, we can create a JAR package containing the application’s code, then use the spark-submit script to run our program.
关于scala - AssemblyKey用作什么,以及如何导入它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26194358/
我是一名优秀的程序员,十分优秀!