repchain/assembly.sbt

7 lines
248 B
Plaintext
Raw Permalink Normal View History

2018-07-11 17:36:52 +08:00
// put this at the top of the file
// 这个是打包之后jar包的名字
assemblyJarName in assembly := "RepChain.jar"
2020-11-17 17:22:25 +08:00
//mainClass in assembly := Some("rep.app.Repchain")
2018-07-11 17:36:52 +08:00
// 这个作用是在打包的时候,跳过测试
test in assembly := {}