1. 在Windows中安装sbt
下载
官网: http://www.scala-sbt.org/
github: https://github.com/sbt/sbt/releases/download/v0.13.15/sbt-0.13.15.msi
(官网的地址好像下到一半就失败.)
安装
1) 安装 sbt-0.13.15.msi, 注意安装路径不要有中文或者空格, 最好放到根目录下如:D:\sbt
2) 配置环境变量:
3) 修改配置文件
修改 安装目录下conf/sbtconfig.txt, 我的内容如下:
-Dsbt.log.format=true
-Dfile.encoding=UTF8
-Dsbt.global.base=e:/sbt/.sbt
-Dsbt.boot.directory=e:/sbt/.sbt/boot/
-Dsbt.repository.config=e:/sbt/.sbt/repositories
-Dsbt.ivy.home=e:/sbt/.ivy2
-Xmx512M
-Xss2M
-XX:+CMSClassUnloadingEnabled
关于 几个-D开头的配置, 可参考下图(更多信息参考官网链接: Command Line Options):
4) 修改仓库地址为阿里云(如果在上面配置中没有写-Dsbt.repository.config, 那么默认的位置就在用户目录/.sbt/下新建repositories文件), 文件内容:
[repositories]
local
aliyun nexus:http://maven.aliyun.com/nexus/content/groups/public
typesafe-ivy-releases: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/artifact.[ext]
maven-central
sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots
5) 下载依赖
配置完后, 命令行输入: sbt , 会下载一些必须的依赖, 如果其中有失败就多试几次. 下完后就可以使用了
2. 在IDEA中安装sbt
为了更好的在idea中使用sbt, 最好安装下相关插件
这是default settings, settings里最好也设置一下
除了上述位置以外, 还有两处配置, 最好也相似的配置一下():
Settings 和 default Settings => other Settings => SBT
其二:
sbt参考链接:
http://wiki.jikexueyuan.com/project/sbt-getting-started/