idea下 sbt 打包文件

为什么80%的码农都做不了架构师?>>>   hot3.png

1.下载github上,日志解析项目代码

https://github.com/alvinj/ScalaApacheAccessLogParser

2.idea 将项目重命名后打开项目

    修改build.sbt :

    name := "AccessLogParser"
    scalaVersion := "2.10.5"

3. idea终端运行命令

    sbt compile

    sbt package

idea下 sbt 打包文件_第1张图片

4.从该项目获取生成的 jar包

路径:/home/eric/IdeaProjects/AccessLogParser/target/scala-2.10/accesslogparser_2.10-1.0.jar

 

转载于:https://my.oschina.net/sunmin/blog/703233

你可能感兴趣的:(开发工具)