SBT 安装 for windows

来源:互联网 发布:日本殖民地知乎美国 编辑:程序博客网 时间:2024/04/29 22:28

1.下载

http://www.scala-sbt.org/download.html
解压:
sbt-0.13.12.zip

2.添加环境变量

SBT_HOME=D:\JavaDev\sbt
path=……;%SBT_HOME%\bin;

3.配置本地仓库

编辑:conf/sbtconfig.txt

# Set the java args to high-Xmx512M-XX:MaxPermSize=256m-XX:ReservedCodeCacheSize=128m# Set the extra SBT options-Dsbt.log.format=true-Dsbt.boot.directory=D:/JavaDev/boot/-Dsbt.global.base=D:/JavaDev/.sbt-Dsbt.ivy.home=D:/JavaDev/.ivy2-Dsbt.repository.config=D:/JavaDev/sbt/conf/repo.properties

增加文件 conf/repo.properties

[repositories]   local Nexus osc : https://code.lds.org/nexus/content/groups/main-repo Nexus osc thirdparty : https://code.lds.org/nexus/content/groups/plugin-repo/ typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly   typesafe2: http://repo.typesafe.com/typesafe/releases/ sbt-plugin: http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/ sonatype: http://oss.sonatype.org/content/repositories/snapshots   uk_maven: http://uk.maven.org/maven2/   ibibli: http://mirrors.ibiblio.org/maven2/   repo2: http://repo2.maven.org/maven2/

4.测试

sbt -version

1 0
原创粉丝点击