使用sbt打包依赖库文件

前端之家收集整理的这篇文章主要介绍了使用sbt打包依赖库文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面的方法只是其中一种,供自己学习记录使用


1) 在project/plugins.sbt或者全局plugin的配置文件加入如下plugin

addSbtPlugin("org.xerial.sbt" % "sbt-pack" "0.7.9")  // for sbt-0.13.x or higher

addSbtPlugin("0.2.5")  // for sbt-0.12.x (New features will not be supported in this version.)


2) 在build.sbt中加入如下代码

// Automatically find def main(args:Array[String]) methods from classpath
packAutoSettings

3) 在命令行运行如下命令


$ sbt pack
这样你就可以在target/pack目录下找到启动脚本和依赖的库文件 原文链接:https://www.f2er.com/javaschema/283985.html

猜你在找的设计模式相关文章